// JavaScript Document
window.onload = rerouteTime;	

var c=10;
var t;

function rerouteTime(){
	if(c > 0){
		var countdown = document.getElementById('countdown');
		countdown.innerHTML = "You will be automitcally rerouted to <a href=\"http://qsny.org\">www.QUALITYstarsNY.org</a> in "+c+" second(s)";
		c=c-1;
		t=setTimeout("rerouteTime()",1000);
	}
	else{
		window.location.assign('http://qsny.org');	
	}
}
