<!-- // Fecha actualización
meses= new Array ("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
fecha= new Date();
indice = fecha.getMonth();
anio=fecha.getYear();
if (anio < 1900){anio=anio+1900;}
document.write( " Bogot&aacute;. " + fecha.getDate()+ " de " + meses[indice] +" de "+anio);
//-->
<!-- // Hora
function hora(){
	var m;
	var fecha = new Date()
	var hora = fecha.getHours()
	var minuto = fecha.getMinutes()
	var segundo = fecha.getSeconds()
	if (hora >= 12) {m=" pm"}
	else {m=" am"}
	if (hora > 12) {hora = hora - 12}
	if (hora < 10) {hora = "0" + hora}
	if (minuto < 10) {minuto = "0" + minuto}
	if (segundo < 10) {segundo = "0" + segundo}
	var horita = "  " + hora + ":" + minuto + m
	document.getElementById('hora').firstChild.nodeValue = horita
	tiempo = setTimeout('hora()',1000)
}
function inicio(){
	document.write('<span id="hora">')
	document.write ('000000</span>')
	hora()
}
inicio()
//-->
