var lang = "it";
function setup(language) {
lang = language;

}

function suggest(val,paste) {
if (paste) {
if (lang == "it")
		document.getElementById("infotext").innerHTML="guarda il video senza limiti!"; 
	else 
		document.getElementById("infotext").innerHTML="play it without limits!";
  document.getElementById("infotext").style.textAlign ="right"; 
  document.getElementById("infotext").style.color ="#c4ff00";
  document.getElementById("infonarrow").style.background ="transparent url(images/home/infoboxNarrow.png) no-repeat right 0"; 
  document.getElementById("submit").style.background = "transparent url(images/home/playOn.png) no-repeat center center";

}
 else if (val.length > 1) { 
	if (lang == "it")
		document.getElementById("infotext").innerHTML="guarda il video senza limiti!"; 
	else 
		document.getElementById("infotext").innerHTML="play it without limits!";
  document.getElementById("infotext").style.textAlign ="right"; 
  document.getElementById("infotext").style.color ="#c4ff00";
  document.getElementById("infonarrow").style.background ="transparent url(images/home/infoboxNarrow.png) no-repeat right 0"; 
  document.getElementById("submit").style.background = "transparent url(images/home/playOn.png) no-repeat center center";
 }
 else {
	if (lang == "it")
		document.getElementById("infotext").innerHTML="inserisci il tuo videourl qui"; 
	else 
		document.getElementById("infotext").innerHTML="insert your videourl here";
	document.getElementById("infotext").style.textAlign ="left"; 
	document.getElementById("infotext").style.color ="#fff"; 
	document.getElementById("infonarrow").style.background ="transparent url(images/home/infoboxNarrow.png) no-repeat left 0"; 
	document.getElementById("submit").style.background = "transparent url(images/home/playOff.png) no-repeat center center";
	}
	
 }
 
 function adjustpage() {
 
 if (lang == "it")
		document.getElementById("infotext").innerHTML="guarda il video senza limiti!"; 
	else 
		document.getElementById("infotext").innerHTML="play it without limits!";
  document.getElementById("infotext").style.textAlign ="right"; 
  document.getElementById("infotext").style.color ="#c4ff00";
  document.getElementById("infonarrow").style.background ="transparent url(images/home/infoboxNarrow.png) no-repeat right 0"; 
  document.getElementById("submit").style.background = "transparent url(images/home/playOn.png) no-repeat center center";
 
 }
 
var xmlhttp;

function showPage(str)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  }
  document.getElementById("popupage").style.visibility = 'visible';
if (str == 'tos') {
var url="includes/tos_"+lang+".html";
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
else if (str == 'contacts') {
var url="includes/contacts_"+lang+".html";
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
else {
document.getElementById("popupcontent").innerHTML= "";
document.getElementById("popupage").style.visibility = 'hidden';
}
	
}

function stateChanged()
{
if (xmlhttp.readyState==4)
  {
  document.getElementById("popupcontent").innerHTML=xmlhttp.responseText;
  }
}

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}

function popupc() {
document.getElementById("popupcontent").innerHTML= "";
document.getElementById("popupage").style.visibility = 'hidden';
}
