 function newin(url)
     {
   	window.open(url,"","height=450,width=600,scrollbars=yes")
     }
      function newin_down(url)
     {
   	window.open(url,"","height=200,width=400,scrollbars=yes")
     }
     
function clock()
{
	now=new Date;
	month=now.getMonth();
	month=month+1;
	document.clock.clock.value=now.getYear()+"-"+month+"-"+now.getDate()+" "+now.getHours()+":"+now.getMinutes()+":"+now.getSeconds();
	setTimeout("clock()",1000);
}