browser = navigator.appName;
version = parseInt(navigator.appVersion); 
client=null;
if (browser =="Netscape" && version >= 3) 
{ client ="ns3";
  acu = 1900;
}
else
{ acu = 0; }

var popup = null;

function gettheDay() {
        Todays = new Date();

        Dy = Todays.getDay();
        if (Dy == 1) {
                Day = "Lunes";
        }
        if (Dy == 2) {
                Day = "Martes";
        }
        if (Dy == 3) {
                Day = "Mi&eacute;rcoles";
        }
        if (Dy == 4) {
                Day = "Jueves";
        }
        if (Dy == 5) {
                Day = "Viernes";
        }
        if (Dy == 6) {
                Day = "S&aacute;bado";
        }
        if (Dy == 0) {
                Day = "Domingo";
        }
        Day = Day + ","
        return (Day);
        }

function gettheDate() {
        Todays = new Date();
        Mnth = Todays.getMonth()+ 1;
        if (Mnth == 1) {
                Month = "Enero";
        }
        if (Mnth == 2) {
                Month = "Febrero";
        }
        if (Mnth == 3) {
                Month = "Marzo";
        }
        if (Mnth == 4) {
                Month = "Abril";
        }
        if (Mnth == 5) {
                Month = "Mayo";
        }
        if (Mnth == 6) {
                Month = "Junio";
        }
        if (Mnth == 7) {
                Month = "Julio";
        }
        if (Mnth == 8) {
                Month = "Agosto";
        }
        if (Mnth == 9) {
                Month = "Septiembre";
        }
        if (Mnth == 10) {
                Month = "Octubre";
        }
        if (Mnth == 11) {
                Month = "Noviembre";
        }
        if (Mnth == 12) {
                Month = "Diciembre";
        }
        year2000 = Todays.getYear() + acu;

        
		TheDate = ""  + Todays.getDate() + " de " + Month + " del " + year2000; 
        return (TheDate);
        }


function select_url(x)
                {
        location = x;
        }
