// addr			l'indirizzo del documento che dovra' contenere
// props		la stringa con le proprieta' (almeno width ed height, separate da virgole)
function PopImage(title, addr, width, height )
{
	h = eval(height) + 30;
	w = eval(width) ;//+ 25;
	newwin=window.open("", "Zoom", "height=" + h + ",width=" + w + ",resizeable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no");
	newwin.window.resizeTo(w, h);
	newwin.window.document.clear();
	newwin.window.document.open();
	newwin.window.document.writeln("<html>");
	newwin.window.document.writeln("	<head>");
//	newwin.window.document.writeln("		<link href='styles/belvedere.css' rel='stylesheet'>");
	newwin.window.document.writeln("		<title>" + title + "</title>");
	newwin.window.document.writeln("	</head>");
	newwin.window.document.writeln("<body style='margin=0px'>");
	newwin.window.document.writeln("	<center>");
	newwin.window.document.writeln("		<img style='valign:middle' border='0' alt='" + title + "' src='" + addr + "'>");
	newwin.window.document.writeln("	</center>");
	newwin.window.document.writeln("</body>");
	newwin.window.document.writeln("</html>");
	newwin.window.document.close();
	
	newwin.focus();	
}