dows = new Array("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado");
months = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
now = new Date();
dow = now.getDay();
d = now.getDate();
m = now.getMonth();
h = now.getTime();
y = now.getYear();
var today_date = dows[dow] + " " + d + " de " + months[m] + " del " + now.getFullYear();
document.getElementById("today_date").innerHTML = today_date
function show5() {
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 = "PM"
if (hours < 12)
dn = "AM"
if (hours > 12)
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 = "" + 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("show5()", 1000)
}
window.onload = show5
Inicio
Quiénes Somos
Directorio
Contacto
Aviso de Privacidad