function display(myimage) {
 html = "<HTML><HEAD><TITLE>ESMAP</TITLE>" +
        "<style type='text/css'><!-- body {	background: #fff url(/wp-content/themes/esmap-2006/images/_general/bigrotation2.gif) center center no-repeat;} --></style>" +
		"</HEAD><BODY><CENTER>" +
		"<a href='javascript:window.close()'>" +
        "<IMG SRC='" + myimage + "' BORDER=0 alt='Cerrar ventana' NAME=image " +
        "onload='window.resizeTo(document.image.width+10,document.image.height+55)'></a></CENTER></BODY></HTML>";
 popup=window.open('','image','width=10,height=10,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close()
 };
 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
};