// JavaScript Document


function fullscreen(lingua) {
	var w = screen.width;
	var h = screen.height;
	
	if ((w < 1024) || (h < 768)) {
		window.open('main.php?scrolls=yes&lng='+lingua+'','','fullscreen=true, width='+w+', height='+h+', top=0, left=0, resizable=yes, scrollbars=yes, status=no');
	}
	else {
		window.open('main.php?scrolls=no&lng='+lingua+'','','fullscreen=true, width='+w+', height='+h+', top=0, left=0, scrollbars=no, menubar=no, menubar=no, status=no, toolbar=no, location=no, directories=no, resizable=no');
	}
	
	
}

function controllo(){
	document.getElementById("entra").onclick = function() {
		fullscreen(1);
		return false;
	}
	document.getElementById("enter").onclick = function() {
		fullscreen(2);
		return false;
	}
}

function lingua(){
	lang = document.all?navigator.userLanguage:navigator.language;
	if (lang == "it"){
		controllo(1)
		document.getElementById("link").className="a_1";
	}else{
		controllo(2)
		document.getElementById("link").className="a_2";
	}
}

window.onload = function() {
	controllo();
}
