	function OpenWindowZoom (imageName, title, comment)
 	{
 		newWindow = window.open("","windowZoom","dependant=yes");
		newWindow.document.open();
  		newWindow.document.write("<html><head><title>" + title + "</title></head>" +
                               "<body bgcolor=#604f5e text='white' link='white' alink='white' vlink='white' onload='window.resizeTo(document.images[1].width + 50,document.images[1].height + 150);window.focus();'>" +
			       "<center><img src='imagenes/LogoMINIM.gif' width=125 height=30></a><br><br>" +
			       "<img name='zoomImg' src='" + imageName + "'>" +
			       "<p style='color: white; font-family: arial; font-size:10pt'>" + comment + "</p>" +
			       //"<p style='color: white; font-family: arial; font-size:10pt'>" + designerComments[iComment] + "</p>" +
			       "</center></body></html>");
		newWindow.document.close();
	}

