function apriFullScreen(lingua){
	if(navigator.appName.indexOf("Netscape") != -1) {
		//Con NETSCAPE apro la finestra delle dimensioni dello schermo
		window.open('/hp.html', '', 'screenX=0, screeny=0, width=' + window.screen.width + ',height=' + window.screen.height);	
	}else if(navigator.appName.indexOf("Internet Explorer") != -1) {
		//Con NETSCAPE apro la finestra in fullscreen
		window.open('/hp.html', '', 'fullscreen=yes');	
	}
	void(1);
	window.location.replace('/reenter.html');	
}

