<!--
  function MakeArraya(size)
  {
  this.length = size;
  for(var i = 1; i <= size; i++)
  {
  this[i] = "";
  }
  return this;
  }

  function MakeArrayb(size)
  {
  this.length = size;
  for(var i = 1; i <= size; i++)
  {
  this[i] = "";
  }
  return this;
  }

  function showtime () {
  var now = new Date();
  var year = now.getFullYear();
  var month = now.getMonth() + 1;
  var date = now.getDate();
  var day = now.getDay();
  Day = new MakeArraya(7);
  Day[0]="Sunday";
  Day[1]="Monday";
  Day[2]="Tuesday";
  Day[3]="Wednesday";
  Day[4]="Thursday";
  Day[5]="Friday";
  Day[6]="Saturday";

  Month = new MakeArrayb(12);
  Month[1]="January";
  Month[2]="February";
  Month[3]="March";
  Month[4]="April";
  Month[5]="May";
  Month[6]="June";
  Month[7]="July";
  Month[8]="August";
  Month[9]="September";
  Month[10]="October";
  Month[11]="November";
  Month[12]="December";
	
	var timeValue = "";
  timeValue += (Day[day]) + ", ";
  timeValue += (Month[month]) + " ";
  timeValue += date + ", " +  year + "    ";
  document.write(timeValue);
  }
  

  function showtimees () {
  var now = new Date();
  var year1 = now.getFullYear();
  var month1 = now.getMonth() + 1;
  var date1 = now.getDate();
  var day1 = now.getDay();
  Day1 = new MakeArraya(7);
  Day1[0]="Domingo";
  Day1[1]="Lunes";
  Day1[2]="Martes";
  Day1[3]="Miercoles";
  Day1[4]="Jueves";
  Day1[5]="Viernes";
  Day1[6]="Sabado";

  Month1 = new MakeArrayb(12);
  Month1[1]="Enero";
  Month1[2]="Febrero";
  Month1[3]="Marzo";
  Month1[4]="Abril";
  Month1[5]="Mayo";
  Month1[6]="Junio";
  Month1[7]="Julio";
  Month1[8]="Agosto";
  Month1[9]="Septiembre";
  Month1[10]="Octubre";
  Month1[11]="Noviembre";
  Month1[12]="Diciembre";

  var timeValue1 = "";
  timeValue1 += (Day1[day1]) + ", ";
  timeValue1 += (Month1[month1]) + " ";
  timeValue1 += date1 + ", " +  year1 + "    ";
  document.write(timeValue1);
  }

function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
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();
}
//-->