// POPUP GALERĶA 
function Galeria(desktopURL, width, height){

var widthVentana = width + 10
var heightVentana = height + 10

	popupwin=window.open( "", "_blank", "toolbar='no', location='no', status='no', menubar='no', resizable='no', scrollbars='no', width="+ widthVentana +",height="+ heightVentana +" " );
	popupwin.document.write("<html>");
	popupwin.document.write("<head>");
	popupwin.document.write("<title>Instituto Victoria Ocampo</title>");
	popupwin.document.write("<link href='/library/ivo.css' rel='stylesheet' type='text/css' />");
	popupwin.document.write("</head>");
	popupwin.document.write("<body bgcolor='#292a58' marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'>");
	popupwin.document.write("<table border='0' cellpadding='5' cellspacing='0' width='100%'>");
	popupwin.document.write("  <tr>");
	popupwin.document.write("    <td align='center' class='Back9'><a href='#' onClick='self.close()'><img src='" + desktopURL +"' border='0' alt='Cerrar ventana' width='"+ width +"' height='"+ height +"'></a></td>");
	popupwin.document.write("  </tr>");
	popupwin.document.write("</table>");
	popupwin.document.write("</body>");
	popupwin.document.write("</html>");
}
