function init(){
	if (!document.getElementById) return;
	document.getElementById("cont").style.visibility = "visible";
}

function new_timer(){
	if (!document.getElementById) return;
	closer = window.setTimeout('document.getElementById("cont").style.visibility = "hidden"',1000);
}

function kill_timer(){
	if (!document.getElementById) return;
	if (typeof(closer)!="undefined") window.clearTimeout(closer);
	return;
}
function f3(num){
	if (!document.getElementById) return;
	document.getElementById("f"+num).style.backgroundColor = "#3463A6";
}

function f2(num){
	if (!document.getElementById) return;
	document.getElementById("f"+num).style.backgroundColor = "#28599E";
}
