<!--
var days=new Array(8);
days[1]="Lunes";
days[2]="Martes";
days[3]="Miércoles";
days[4]="Jueves";
days[5]="Viernes";
days[6]="Sábado";
days[0]="Domingo";
var months=new Array(13);
months[1]="Enero";
months[2]="Febrero";
months[3]="Marzo";
months[4]="Abril";
months[5]="Mayo";
months[6]="Junio";
months[7]="Julio";
months[8]="Agosto";
months[9]="Septiembre";
months[10]="Octubre";
months[11]="Noviembre";
months[12]="Diciembre";
var time=new Date();
var lday=days[time.getDay()];
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    
	year = year + 1900; 



function funClock() {
if (!document.layers && !document.all)
return;
var runTime = new Date();
var hours = runTime.getHours();
var minutes = runTime.getMinutes();
var seconds = runTime.getSeconds();
if (hours == 0) {
hours = 24;
}
if (minutes <= 9) {
minutes = "0" + minutes;
}
if (seconds <= 9) {
seconds = "0" + seconds;
}
movingtime = hours + ":" + minutes + ":" + seconds
if (document.layers) {
document.layers.clock.document.write(movingtime);
document.layers.clock.document.close();
}
else if (document.all) {
clock.innerHTML = movingtime;
}
setTimeout("funClock()", 1000)
}
window.onload = funClock;



function solofecha()
{
document.write("<p style=font-family:Tahoma,Verdana,Arial,Helvetica;font-size:8pt color=000000 align=center>");
document.write("Buenos Aires - Argentina - " + lday + " " + date + " de ");
document.write(lmonth + " de " + year + " - " + "<span id=clock style=position:relative></span>" + " " + "</font></p>");
}



//-->
