<!--
var meses=new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio",
                     "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");

var dias= new Array("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado");

var time=new Date(); 
var mes=meses[time.getMonth() ];
var dia=dias[time.getDay() ];
var anio=time.getYear(); 
if ((navigator.appName == "Microsoft Internet Explorer") && (anio < 2000)) anio="19" + anio; 
if (navigator.appName == "Netscape") anio=1900 + anio; 

  var curHour = time.getHours()
  var curMin = time.getMinutes()
  var curSec = time.getSeconds()
  var curTime = 
    ((curHour < 10) ? "0" : "") + curHour + ":" 
    + ((curMin < 10) ? "0" : "") + curMin + ":" 
    + ((curSec < 10) ? "0" : "") + curSec 

hora = curTime.substring(0,5);

document.write("<font face=verdana size=1 color='#999999'>");

if(GetCookie("pais")!="" && GetCookie("pais")!=null ) { document.write( GetCookie("pais") + ", " ); }

document.write( dia + " " + time.getDate() + " de " + mes + " de " + anio + ", " + hora + " hs") ; 
document.write("</font>");
// -->
