function Mostrar(idx,ancho,alto)
{
var a = "width=";
var b = ancho;
var c = "height=";
var d = alto;
Window=window.open("","LACASADELASFIESTAS",c+d +","+a+b)
NewVentana(idx,ancho,alto)
}


function NewVentana(idx,ancho,alto)
{
Window.document.write('<html>');
Window.document.write('<head>');
Window.document.write('<title>..................: La casa de las Fiestas :..................</title>');
Window.document.write('<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">');
Window.document.write('</head>');
Window.document.write('<body bgcolor="#FFFFFF">');
Window.document.write('<div id=\"Layer1\" style=\"position:absolute; width:'+ancho+'px; height:'+alto+'px; z-index:1; top: 0px; left: 0px;\">');
Window.document.write('<table cellpadding=0 cellspacing=0 border=0 width=100%>') ;
Window.document.write('<tr>') ;
Window.document.write('<td>');
var a = "<IMG SRC=\"imagenes/gd/";
var b = idx;
var c = ".jpg";
var d = "\" width=\"" + ancho + "\" height=\"" + alto + "\" border=0>";
Window.document.write (a + b + c + d );
Window.document.write('</td>');
Window.document.write('</tr>') ;
Window.document.write('</table>');
Window.document.write('</div>');
Window.document.write('</body>');
Window.document.write('</html>');
}
