<!-- // By Niki correttto da SOMMA

function popup_img(winurl,winname,bgcolor)
{
	height = 200; width = 200;

	popupwin=window.open("","popup_img",'width='+width+',height='+height+',scrollbars=0,resizable=1,status=1,toolbar=0');
	popupwin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">');
	popupwin.document.writeln('<HTML>');
	popupwin.document.writeln('<HEAD>');
	popupwin.document.writeln('<STYLE TYPE="text/css">');
	popupwin.document.writeln('A { font-family: "Verdana", "Arial", "Helvetica" }');
	popupwin.document.writeln('B { font-family: "Verdana", "Arial", "Helvetica" }');
	popupwin.document.writeln('FONT { font-family: "Verdana", "Arial", "Helvetica" }');
	popupwin.document.writeln('P { font-family: "Verdana", "Arial", "Helvetica" }');
	popupwin.document.writeln('STRONG { font-family: "Verdana", "Arial", "Helvetica" }');
	popupwin.document.writeln('</STYLE>');
	popupwin.document.writeln('<TITLE>'+winname+'</TITLE>');

	popupwin.document.writeln('<SCRIPT LANGUAGE="JAVASCRIPT">');
	popupwin.document.writeln('function Ridimensiona() {');
	popupwin.document.writeln('var browser = navigator.appName; //stupid browsers resize differently');
	popupwin.document.writeln('if(browser == "Netscape") {');
	popupwin.document.writeln('	parent.resizeTo((eval(\'\' + document.imageName.width + \'\')+20+20),(eval(\'\' + document.imageName.height + \'\')+45));');
	popupwin.document.writeln('}');
	popupwin.document.writeln('else {');
	//popupwin.document.writeln('	parent.resizeTo((eval(\'\' + document.imageName.width + \'\')+40+20), (eval(\'\' + document.imageName.height + \'\')+70+80));');
	popupwin.document.writeln('	parent.resizeTo((eval(\'\' + document.imageName.width + \'\')+40+20), (eval(\'\' + document.imageName.height + \'\')+40+60));');
	popupwin.document.writeln('}');	
	popupwin.document.writeln('}');
	popupwin.document.writeln('</SCRIPT>');

	popupwin.document.writeln('</HEAD>');
	popupwin.document.writeln('<BODY ONLOAD="Ridimensiona(); self.focus();" BGCOLOR="'+bgcolor+'">');
	popupwin.document.writeln('<P ALIGN="CENTER"><IMG SRC="'+winurl+'" BORDER="0" NAME="imageName"><BR>');
	popupwin.document.writeln('<FONT SIZE="1"><B><A HREF="javascript:window.close()" ONMOUSEOVER="window.status=\'CLOSE WINDOW\'; return true;" ONMOUSEOUT="window.status=\'\'; return true;">Close Window</A></B></FONT></P>');

	popupwin.document.writeln('</BODY>');
	popupwin.document.writeln('</HTML>');
	popupwin.document.close();	
}

function popup(winurl,winname)
{
	height = 380; width = 640;
	if ( screen.width > 840 ){ width = screen.width - 200; }
	if ( screen.height > 580 ){ height = screen.height - 200; };
	popupwin=window.open(winurl,winname,'width='+width+',height='+height+',scrollbars,resizable,toolbar,status');
	popupwin.focus();
}

//-->