<html>
<head>
<script language="javascript">
function time()
{
   hoy = new Date();
   ann = hoy.getFullYear();
   mes = hoy.getMonth()+1;
   dia = hoy.getDate();
   hor = hoy.getHours();
   min = hoy.getMinutes();
   seg =  hoy.getSeconds();
  
   if (min < 10) min = "0"+min
   if (seg < 10) seg = "0"+seg

   window.status = dia+"/"+ mes+"/"+ ann+"  "+ hor+":"+ min+":"+ seg
   setTimeout('time()',1001);
}
</script>
</head>
<body onLoad="time()">
</body>
</html>
