function hiOn(name) {
 document.getElementById(name).style.backgroundColor='#E0E0E0';
 document.getElementById(name).style.borderColor='#333';
 document.getElementById(name).style.color='#000';
}
function hiOff(name) {
 document.getElementById(name).style.backgroundColor='#FFF';
 document.getElementById(name).style.borderColor='#AAA';
 document.getElementById(name).style.color='#444';
}
function a2() {
var da=new Date
var h=da.getHours();
var m=da.getMinutes();
var s=da.getSeconds();
if (s<10) s="0"+s;
if (h<10) h="0"+h;
if (m<10) m="0"+m;
document.getElementById("time").value=h+":"+m+":"+s;
window.setTimeout("a2()",1000);
}
function openwin(){
window.open('/voteres.php','voteres','width=400,height=400,resizable=yes');
}
function openhelp(){
window.open('/help.html','help','width=400,height=500,resizable=yes');
}
