<!-- 
	function SymError()
	{
		return true;
	}
	window.onerror = SymError;
	

	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 FinestraUtentiInLinea(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'); 
	}
	
	//configure the two variables below to match yoursite's own info
	var bookmarkurl="http://www.scienzemotorie.univaq.it"
	var bookmarktitle="Università degli Studi di L'Aquila - Facoltà di Scienze Motorie -"

	function addbookmark()
	{
		if (document.all)
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}
	
	function homepage()
	{ 
		if(document.all)
		document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage(bookmarkurl);
	}


// -->