<!--
function Fotos(imagen,pie,Ancho,Alto)
{
	MasAlto=Alto;
	features = "width="+Ancho+",height="+MasAlto;
	//path_imagen= "/common/imagen_directa.htm?img="+imagen+"&pie="+pie+"&w="+Ancho+"&h="+Alto;
	w_new = window.open("",Ancho+Alto,features);
	w_new.document.write("<html>");
	w_new.document.write("<head>");
	w_new.document.write("<title>"+pie+"</title>");
	w_new.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
	w_new.document.write("</head>");
	w_new.document.write("<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor=#AC0000>");
	w_new.document.write("<table border=0 bgcolor=#AC0000 cellpadding=0 cellspacing=0 vspace=0 hspace=0>");
  	w_new.document.write("<tr>");
        w_new.document.write("<td bgcolor=#AC0000>");
	w_new.document.write("<img src='");
	w_new.document.write(imagen + "'");
	w_new.document.write(" width='");
	w_new.document.write(Ancho + "'");
	w_new.document.write(" height='");
	w_new.document.write(Alto + "'");
	w_new.document.write(" alt=");
	w_new.document.write(pie);
	w_new.document.write("></td>");
  	w_new.document.write("</tr>");
	w_new.document.write("</table>");
	w_new.document.write("</body>");
	w_new.document.write("</html>");
}

//-->