function Remain(Seconds) {
	document.getElementById("timer").innerHTML=Seconds+" second"+(Seconds!=1?"s":"");
	setTimeout("Remain("+--Seconds+")",1000);
}

