<!--
function zoom(imageName) {
	newWindow = window.open('','newWindow','width=50,height=50,resizable=yes,titlebar=no,left='+(screen.availWidth-50)/2+',top='+(screen.availHeight-50)/2+'');
	newWindow.document.open();
	newWindow.document.write('<html><title>image preview</title><body bgcolor="#5abae3" leftmargin="0" onBlur="javascript:self.close()" topmargin="0" marginheight="0" marginwidth="0" onLoad="window.moveTo((screen.availWidth-document.foto.width)/2,(screen.availHeight-document.foto.height)/2);window.resizeTo(document.foto.width,document.foto.height);">'); 
	newWindow.document.write('<a href="javascript:self.close()"><img name="foto" border=0 src="'+imageName+'"></a>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
<!--"


