// JavaScript Document
function gallery(imagen,w,h){
tempwin=window.open("","galeria","width=10,height=10,menubar=0,toolbar=0,directories=0,location=0,status=1,resizable=0,scrollbars=0");
tempwin.close();
tempwin=window.open("","galeria","width="+w+",height="+h+",menubar=0,toolbar=0,directories=0,location=0,status=1,resizable=0,scrollbars=0");
tempwin.document.open();
tempwin.document.write("<html>");
tempwin.document.write("<head>");
tempwin.document.write("<title>Galeria</title>");
tempwin.document.write("<style>body{margin: 0px 0px 0px}</style>");
tempwin.document.write("</head>");
tempwin.document.write("<body>");
tempwin.document.write("<image src="+imagen+">");
tempwin.document.write("</body>");
tempwin.document.write("</html>");
tempwin.document.close();
}