/*
default color:
	var sbackgroundcolor = "#ffffff";
	var stesticolor = "#666666";
	var slinecolor = "#333333"
*/
var sbackgroundcolor = "#ffffff";
var stesticolor = "#666666";
var slinecolor = "#333333"

function ChangeColor(){
	document.body.style.color = stesticolor;
	document.body.style.backgroundColor=sbackgroundcolor;
      var links = document.getElementsByTagName("a");
      for (i = 0; i < links.length; i++) {
		links[i].style.color = stesticolor;
      }	
	document.getElementById("divisore").style.backgroundColor=slinecolor;
	document.getElementById("divisore1").style.backgroundColor=slinecolor;	
}

function Mostratesto() {
	document.getElementById("testohidden").style.display="block";
	document.getElementById("lingua").style.display="none";
}
function nasconditesto() {
	document.getElementById("testohidden").style.display="none";
	document.getElementById("lingua").style.display="block";
}

function ChangeLang(idLang){

	var a = document.URL;
	var aTemp = a.split("/");
	var g= String(aTemp[aTemp.length-1]);
	if (idLang == "eng"){
		if (g == "")
			a = "e_" + "index.asp";
		else{
			if (g.substr(0,2)=="s_")
				a = "e_" + g.substr(2,g.length-2);
			else
				a = "e_" + g;
		}
	}else{
		var e = g;
		var s = e.length;
		a = e.substring(2,s);
		
	}
	document.location = a;
	
}

