function fecha_es(Dia, Mes)	{	
	var now = new Date();
	var year = now.getYear()
	var yearString = new String(year)
	var LongYear = (year < 100 ? "19" : "20" ) + yearString.substring(yearString.length - 2)
	var Hoy = Dia[now.getDay()] + ", " +  now.getDate() + " de "+ Mes[now.getMonth()] + " de " + LongYear 
	document.write(Hoy)
	}

function fecha_en(Dia, Mes)	{	
	var now = new Date();
	var year = now.getYear()
	var yearString = new String(year)
	var LongYear = (year < 100 ? "19" : "20" ) + yearString.substring(yearString.length - 2)
	var Hoy = Dia[now.getDay()] + " " +  now.getDate() + " "+ Mes[now.getMonth()] + ", " + LongYear 
	document.write(Hoy)
	}

function fecha_pt(Dia, Mes)	{	
	var now = new Date();
	var year = now.getYear()
	var yearString = new String(year)
	var LongYear = (year < 100 ? "19" : "20" ) + yearString.substring(yearString.length - 2)
	var Hoy = Dia[now.getDay()] + " " +  now.getDate() + " "+ Mes[now.getMonth()] + ", " + LongYear 
	document.write(Hoy)
	}


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

myclock=hours+":"+minutes+" "+dn+"</font>"
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)
}	
// JavaScript Document