	function shot(immagine) {
	  msgWindow=window.open("","","menubar=no, scrollbars=no status=no,width=640,height=480");
	  msgWindow.document.write ("<html>\n");
	  msgWindow.document.write ("  <head>\n");
	  msgWindow.document.write ("    <title>ScreenShot</title>\n");
	  msgWindow.document.write ("  </head>\n");
	  msgWindow.document.write ("  <body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n");
	  msgWindow.document.write ("    <a href='javascript:window.close();'>\n");
	  msgWindow.document.write ("    <img src="+immagine+" title='CLICCA PER CHIUDERE'>\n");
	  msgWindow.document.write ("    </a>\n");
	  msgWindow.document.write ("  </body>\n");
	  msgWindow.document.write ("</html>\n");
	 }
	 
	function shotDim(immagine, w, h) {
	  msgWindow=window.open("","","menubar=no, scrollbars=no status=no,width="+w+",height="+h+"");
	  msgWindow.document.write ("<html>\n");
	  msgWindow.document.write ("  <head>\n");
	  msgWindow.document.write ("    <title>Softwing</title>\n");
	  msgWindow.document.write ("  </head>\n");
	  msgWindow.document.write ("  <body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n");
	  msgWindow.document.write ("    <img src="+immagine+">\n");
	  msgWindow.document.write ("  </body>\n");
	  msgWindow.document.write ("</html>\n");
	 }	 
	 
	function openWindow(URL,winName,features) {
	window.open(URL,winName,features);
	}	 
	
	function openPopUrl(URL) {
	window.open(URL,"mappa","menubar=no, scrollbars=no status=no,width=640,height=480");
	}	 

