// JavaScript Document
<!--
function PopImmagini(label,immagine,width,height) {
// specify window parameters
	Win = window.open("", "Immagini", "width="+width+",height="+height+",status,scrollbars=no,resizable,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
	Win.document.write("<HEAD><TITLE>"+label+"</TITLE></HEAD><BODY BGCOLOR=#FFFFFF leftmargin=0 topmargin=0><TABLE align=center BORDER=0 cellspacing=0 cellpadding=0>");	
	Win.document.write("<TR><TD ALIGN=CENTER>");
	Win.document.write("<img src="+immagine+" width="+width+" height="+height+">");
	Win.document.write("</TD></TR>");	
	Win.document.write("</TABLE></BODY>");
	Win.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) =="Netscape") Win.focus();
}
//-->
function menu(str) {
 
        searchWin = window.open(str,'menu','scrollbars=no,resizable=no,width=500,height=350,status=no,location=no,toolbar=no');
 
//        searchWin.refer = self;
 
}
