/*************************************************
* Gestione navigazione (risoluzione, linguaggio) *
*************************************************/
	function gotoHomePage(s_typeOfNavigation)
	{		
		var s_home='';
		var s_res='';
		var s_lan='';
		s_res = screen.width;
		s_lan = navigator.systemLanguage;
		
		if (s_typeOfNavigation == 'flash'){
			if (s_lan == "en") s_home=s_typeOfNavigation + '/' + '1024/en/home.htm';
			else s_home=s_typeOfNavigation + '/' + '1024/it/home.htm';
		}
		if (s_typeOfNavigation == 'htm')
		{
			if (s_res <= 800) 
			{
				if (s_lan == "en") s_home=s_typeOfNavigation + '/' + '800/en/home.htm';
				else s_home=s_typeOfNavigation + '/' + '800/it/home.htm';
			}
			if (s_res > 800)
			{
				if (s_lan == "en") s_home=s_typeOfNavigation + '/' + '1024/en/home.htm';
				else s_home=s_typeOfNavigation + '/' + '1024/it/home.htm';
			}
		}
		document.location.replace(s_home);
	}
	
	function browsniffer()
	{
		if (navigator.appName == "Microsoft Internet Explorer") Browser= 'IE';
  		if (navigator.appName == "Netscape") Browser= 'NS';
		alert(Browser);
	}
