

function Item(){
this.length = Item.arguments.length 
for (var i = 0; i < this.length; i++)
this[i] = Item.arguments[i]
}
function Fecha() {
var ndia  = new Item('Domingo', 'Lunes', 'Martes', 'Mi&eacute;rcoles', 'Jueves', 'Viernes', 'S&aacute;bado')
var nmes  = new Item('Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 
'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre')
var ahora
var fecha = new Date()
var ano   = fecha.getYear()
var mes   = fecha.getMonth()
var dia   = fecha.getDay()
var aux   = "" + fecha
if (ano<10) { ano2 = "200" + eval(ano) }
else if (ano<80) { ano2 = "20" + ano } 
else if (ano<=99) { ano2 = "19" + ano }
else if (ano<1000) { ano2 = eval(ano) + eval(1900) }
else { ano2 = ano }
ahora = ndia[dia] + ", " + eval(aux.substring(7, 10)) + " " + nmes[mes] + " " + ano2
return ahora
}





function change_lan(i,s,p,t)
{
if (s==0)
{ document.location.href="indexnav.php?lan="+i+"&s="+s+"&p="+p+"&t="+t;	 }
else 
{ document.location.href="indexnav.php?lan="+i+"&s="+s+"&p="+p+"&t="+t;	 }
}




function enlarge(size,title,file,x,y)
{
Over = "window.status = 'Cerrar'; return true;";
Out = "window.status = 'Peregrinusweb.com © Image'; return true;";
URL=file;
newwin=window.open('','newwindow','status=yes,width=420,height=330, scrollbars=yes');
newwin.document.writeln('<HTML>');
newwin.document.writeln('<HEAD><TITLE>', title, '</TITLE>');
newwin.document.writeln('</HEAD><BODY MARGINWIDTH="0" MARGINHEIGHT="0" TOPMARGIN="0" LEFTMARGIN="0" BGCOLOR="#CC0000">');
newwin.document.writeln('<table align=center width=100% height=100% border=0><tr><td><img src="img/logos/logog.gif" width="150" height="47" border="0"></td><td><img src="img/text/t-galeria.gif" width="83" height="36" border="0"></td></tr><tr><td valign=middle colspan="2" align=center><IMG SRC="', URL, '" BORDER=0 WIDTH="',x,'" HEIGHT="',y,'"  style="border: 1px solid #660000"></td></tr></table>');
newwin.document.writeln('</BODY></HTML>');
newwin.document.close();
newwin.focus();
}





