time = 10;

function countdown()
{
	if (time > 0){
time = time -1;	
out = time;
document.getElementById('CD').innerHTML=out;
setTimeout('countdown()',1000);
}else{
	window.location.href = "http://www.thekatzgroup.com/index2.html";
}
}

function printCounter ()
{
out='10';
return out;
}