function PopupImage(imageName) { 
		
		myNewWindow = window.open('', 'Dettaglio','width=410,height=500,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0'); 
		myNewWindow.document.write("<HTML><HEAD><\/HEAD>");
		myNewWindow.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onLoad='self.moveTo(0,0)'>");
		myNewWindow.document.write("<TABLE align='center' valign='middle' height='100%'><TR><TD><a href='#' onClick='self.close();'><IMG SRC='" + imageName + "' alt='close' border='0'></a></TD></TR></TABLE><\/BODY><\/HTML>");
		myNewWindow.document.close();
		myNewWindow.focus();
		
	}

