
function abrir(){//abrir en una nueva ventana
nueva_vent=open('../ayuda_consulta.html','vent1','toolbar=0, status=0, location=0, directories=0, menubar=0, scrollbars=1, resize=0, width=500, height=500');
}
function PopupPic(sPicURL) { //abrir en la misma 
     window.open( sPicURL, "","resizable=0,height=450,width=550,top=0,left=0,scrollbars=1"); 
   } 
 function PopupPic1(sPicURL) { //abrir en la misma 
     window.open( sPicURL, "","resizable=0,height=600,width=750,top=0,left=0,scrollbars=1"); 
   }   
   //sacar la fecha del sistema
var pong;
function makeArray(n){
  this.length = n;
  for (i=1;i<=n;i++){
    this[i]=0;
  }
  return this;
}

// standard date display function with y2k compatibility
function displayDate() {
  var this_month = new makeArray(12);
  this_month[0]  = "Enero del";
  this_month[1]  = "Febrero del";
  this_month[2]  = "Marzo del";
  this_month[3]  = "Abril del";
  this_month[4]  = "Mayo del";
  this_month[5]  = "Junio del";
  this_month[6]  = "Julio del";
  this_month[7]  = "Agosto del";
  this_month[8]  = "Septiembre del";
  this_month[9]  = "Octubre del";
  this_month[10] = "Noviembre del";
  this_month[11] = "Diciembre del";

  var this_day_e = new makeArray(7);
  this_day_e[0]  = "Domingo";
  this_day_e[1]  = "Lunes";
  this_day_e[2]  = "Martes";
  this_day_e[3]  = "Miércoles";
  this_day_e[4]  = "Jueves";
  this_day_e[5]  = "Viernes";
  this_day_e[6]  = "Sábado";

  var today = new Date();
  var day   = today.getDate();
  var month = today.getMonth();
  var year  = today.getYear();
  var dia = today.getDay();
    if (year < 1000) {
       year += 1900; }
  return( " " + this_day_e[dia] + ", " + day + " de " + this_month[month] + " " + year);
}