var d=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sábado"); 
var m=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
var now = new Date()
var fecha = d[now.getDay()] + ", " + now.getDate() + " de " + m[now.getMonth()]+ " de 2004";

function Pic(PicName,Pos) {
	 if (Pos=='H')
	 document.write("<a href=\"#\" OnClick=\"window.open('popup_h.htm?"+PicName+"','','width=460,height=370')\"><img src=\"fotos/thumb/"+PicName+".jpg\" width=\"160\" height=\"120\" border=0></a>");
	 else 
	 if (Pos=='V')
	 {
	 document.write("<a href=\"#\" OnClick=\"window.open('popup_v.htm?"+PicName+"','','width=360,height=470')\"><img src=\"fotos/thumb/"+PicName+".jpg\" width=\"120\" height=\"160\" border=0></a>");
	 }
}