var timerMin = 3;
var timerSec = 59;

function countDown(initialize) {
	var stopTimer = 0;
	if (initialize == 1) {
			document.getElementById("timerMin").innerHTML = timerMin;
			document.getElementById("timerSec").innerHTML = timerSec;
			
			setTimeout("countDown(0)", 1000);
	} else {
	
			if (timerSec == 0) {
				if (timerMin == 0) {
					alert("We are Waiting For Your Application - Hurry And Complete It To Get Cash Quickly!");
					stopTimer = 1;
					callItAgain();				
				} else {
					timerMin -= 1;
					document.getElementById("timerMin").innerHTML = timerMin;
					timerSec = 60;
				}
			}
			
			if (stopTimer == 0) {
					timerSec -= 1;
					if (timerSec < 10) var timerSec_temp = "0"+timerSec.toString(); else var timerSec_temp = timerSec;
					document.getElementById("timerSec").innerHTML = timerSec_temp;
					
					setTimeout("countDown(0)", 1000);
			}
	}
}


function callItAgain()
{
timerMin=3;
timerSec=59;
countDown(1);
}