
   nomedia=new Array ("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado")
   nomemes= new Array ("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septembre", "Octubre", "Noviembre", "Diciembre")
   ahora= new Date

   document.write("<DIV ALIGN=LEFT><FONT FACE=TIMES NEW ROMAN COLOR=RED SIZE=-1>"+nomedia[ahora.getDay()]+" "+ahora.getDate()+" "+nomemes[ahora.getMonth()]+" "+ahora.getFullYear()+" </FONT></DIV>")   
 
if (ahora.getMinutes()<10 && ahora.getSeconds()<10) 
   {document.write("<DIV ALIGN=LEFT><FONT FACE=TIMES NEW ROMAN COLOR=RED SIZE=-1>"+ahora.getHours()+":0"+ahora.getMinutes()+":0"+ahora.getSeconds()+"</FONT></DIV>")}	
if (ahora.getMinutes()<10 && ahora.getSeconds()>10) 
   {document.write("<DIV ALIGN=LEFT><FONT FACE=TIMES NEW ROMAN COLOR=RED SIZE=-1>"+ahora.getHours()+":0"+ahora.getMinutes()+":"+ahora.getSeconds()+"</FONT></DIV>")}	     
if (ahora.getMinutes()>10 && ahora.getSeconds()<10) 
   {document.write("<DIV ALIGN=LEFT><FONT FACE=TIMES NEW ROMAN COLOR=RED SIZE=-1>"+ahora.getHours()+":"+ahora.getMinutes()+":0"+ahora.getSeconds()+"</FONT></DIV>")}	                 
if (ahora.getMinutes()>10 && ahora.getSeconds()>10) 
   {document.write("<DIV ALIGN=LEFT><FONT FACE=TIMES NEW ROMAN COLOR=RED SIZE=-1>"+ahora.getHours()+":"+ahora.getMinutes()+":"+ahora.getSeconds()+"</FONT></DIV>")}	                 

