<!--
	//Modeless window script- By DynamicDrive.com
	//for full source code and terms of use
	//visit http://www.dynamicdrive.com

	function FinestraStatistiche(url,width,height){
		x = (640 - width)/2; 
		y = (480 - height)/2; 
		if (screen) 
		{ 
			y = (screen.height - height)/2; 
			x = (screen.width - width)/2; 
		} 

		window.open(url,'','toolbar=no, width='+width+', height='+height+', screenX='+x+', screenY='+y+', top='+y+', left='+x+', directories=no, status=no, menubar=no, scrollbars=yes, resizable=no'); 
	}

	function ApriImmagine(url){
		width = 300;
		height = 340;
		x = (640 - width)/2; 
		y = (480 - height)/2; 
		if (screen) 
		{ 
			y = (screen.height - height)/2; 
			x = (screen.width - width)/2; 
		} 

		window.open(url,'','toolbar=no, width='+width+', height='+height+', screenX='+x+', screenY='+y+', top='+y+', left='+x+', directories=no, status=no, menubar=no, scrollbars=yes, resizable=no'); 
	}
	
	function ApriFoto(url){
		width = 700;
		height = 520;
		x = (640 - width)/2; 
		y = (480 - height)/2; 
		if (screen) 
		{ 
			y = (screen.height - height)/2; 
			x = (screen.width - width)/2; 
		} 

		window.open(url,'','toolbar=no, width='+width+', height='+height+', screenX='+x+', screenY='+y+', top='+y+', left='+x+', directories=no, status=no, menubar=no, scrollbars=yes, resizable=no'); 
	} 

//-->