
date=new Date();

function mois() {
argnr = mois.arguments.length
for (var i = 0; i < argnr; i++)
this[i+1] = mois.arguments[i]
}

var isnMonths= new mois("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
var jours= new mois("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");




function showWin(FileName, wWidth, wHeight, wScroll)
{
 var nTop;
 var nLeft;
 
 nTop = (screen.height - wHeight) / 2
 nLeft = (screen.width - wWidth) / 2

 if (window.ventana2 && !(window.ventana2.closed))
  window.ventana2.close();
 
 ventana2=window.open(FileName, "ImageWindow2", "width=" + wWidth +
                     ",height=" + wHeight + ",top=" + nTop + ",left=" + nLeft +
                     ",scrollbars=" + wScroll );
}
