function recWindow(id,rate) {
 var xMax = screen.width, yMax = screen.height;
 var xOffset = (xMax - 200)/2, yOffset = (yMax - 100)/2;
 window.open('/votepage/?film='+id+'&vote='+rate,'','width=200,height=100,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',copyhistory=no,directories=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no');
}


function showtime()
{
 var CurTime=new Date();
 var h=CurTime.getHours();
 var m=CurTime.getMinutes();
 var x=Math.floor(m/10);
 var y=m%10; 
 
 document.getElementById('clock').innerHTML=h+":"+x+y;
 setTimeout("showtime()",2000);
}
