// ******************************** FECHA *******************************
function lafecha() {
var aux = 'enero,febrero,marzo,abril,mayo,junio,julio,agosto,septiembre,octubre,noviembre,diciembre';
var meses = aux.split(',');
var aux = 'Domingo,Lunes,Martes,Mi&eacute;rcoles,Jueves,Viernes,S&aacute;bado';
var semana = aux.split(',');
var fecha = new Date();
var diasem = fecha.getDay();
var dia = fecha.getDate();
var mes = fecha.getMonth();
var ano = fecha.getYear();
if (ano < 2000) { ano += 1900; };

document.write(semana[diasem]  + ' ' +  dia + ' de ' + meses[mes] + ' ' + ano);
};


if (screen.width < 1024) {
  document.cookie = "wwidth=800;path=/";
  // alert('big screen ' + screen.width);
} else if (screen.width >= 1024) {
  document.cookie = "wwidth=1024;path=/";
};

//******************************POP**************************
  function subWin(loc, nom, ancho, alto, posx, posy) {
    var options="toolbar=0,status=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,width=" + ancho + ",height=" + alto;      
        
    win = window.open(loc, nom, options);                 
    win.focus();
    win.moveTo(posx, posy);    
  }; 