var downTime=2;

function countDown() {
	downTime--;
	//document.getElementById("countdown").innerHTML = downTime;
	if(downTime <= 0) {
		clearTimeout(counter);
		//initiate download
		document.getElementById("dl").src = 'http://www.chsoftware.net/hosting/mowes/download.php?'+query;
		downTime = 1;
		return;
	}
	//write time somewhere to a div

	counter=setTimeout("countDown()",1000);
}

function startDownload() {
	document.getElementById("dl").src = 'http://www.chsoftware.net/hosting/mowes/download.php?'+query;
	return;
}