function startCounter(putDiv,h,m,s){
	var hh;
	var mm;
	var ss;
	if(h == 0 && m == 0 && s == 1){
	hh = 0;
	mm = 0;
	ss = 0;
	document.getElementById(putDiv).innerHTML=hh+":"+mm+":"+ss;
	alert("Partytime!");
	return false;
	}
	hh = h;
	mm = m;
	ss = s-1;
	if(ss == 0){
	ss = 59;
	mm = m-1;
	}
	if(mm == -1 && hh != 0){
	mm = 59;
	hh = h-1;
	}
	if(h == 0 && m == 0 && s <= 6){
		document.getElementById(putDiv).innerHTML=hh+":"+mm+":"+ss;
	} else if(h == 0 && m == 0 && s <= 11){
		document.getElementById(putDiv).innerHTML=hh+":"+mm+":"+ss;
	} else {
		document.getElementById(putDiv).innerHTML=hh+":"+mm+":"+ss;
	}
	setTimeout("startCounter('"+putDiv+"',"+hh+","+mm+","+ss+")", 1000);
}