<!--
<!-- Hide JavaScript from older browsers
	today = new Date();
	date = today.getDate();
	month = today.getMonth();
	year= today.getFullYear();
	if (month==0) monthname="enero de ";
	if (month==1) monthname="febrero de ";
    if (month==2) monthname="marzo de ";
    if (month==3) monthname="abril de ";
    if (month==4) monthname="mayo de ";
    if (month==5) monthname="junio de ";
    if (month==6) monthname="julio de ";
    if (month==7) monthname="agosto de ";
    if (month==8) monthname="septiembre de ";
    if (month==9) monthname="octubre de ";
    if (month==10) monthname=" noviembre de ";
    if (month==11) monthname=" diciembre de ";
//End Hiding JavaScript from older browsers-->
//-->


function hora(){
if (!document.layers&&!document.all&&!document.getElementById)
return
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM" 
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//change font size here to your desire
//myclock="<font size='5' face='Arial' ><b><font size='1'>Hora actual:</font></br>"+hours+":"+minutes+":"+seconds+" "+dn+"</b></font>"
myclock=date+" de "+ "  "+monthname+ "  "+year+" "+""+hours+":"+minutes+":"+seconds+" "+dn
if (document.layers){
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}
else if (document.all)
liveclock.innerHTML=myclock
else if (document.getElementById)
document.getElementById("liveclock").innerHTML=myclock
setTimeout("hora()",1000)
}