// JavaScript Document

function openWin(url, windowname, w, h) {
  newWin=window.open(url, windowname, "scrollbars=no,width=" + w + ",height=" + h)
  newWin.focus()}

function fecha() {
	  aDias = new Array('Domingo', 'Lunes', 'Martes', 'Miercoles', 'Jueves', 'Viernes', 'Sabado');
	  aMeses = new Array('Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre');
	  dFecha = new Date();
	  var Nav4 = (navigator.appName == "Netscape");
	  anno= dFecha.getYear()
	  if (Nav4) { anno=anno+1900;}
          document.write(aDias[dFecha.getDay()] + ', ' + dFecha.getDate() + ' de ' + aMeses[dFecha.getMonth()] + ' de ' + anno);
	}
	
function varitext(text){
text=document
print(text)
}

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
