function $$(todo){
	return document.getElementById(todo);
}
function selectlanguage(l){
	switch(l) {
		case 'ita':
			$$("eepTextIt").style.display = "inline";
			$$("eepTextEn").style.display = "none";
			$$("eepTextEs").style.display = "none";
			$$("eepTextFr").style.display = "none";
			$$("co2TextIt").style.display = "inline";
			$$("co2TextEn").style.display = "none";
			$$("co2TextEs").style.display = "none";
			$$("co2TextFr").style.display = "none";
			$$("pprTextIt").style.display = "inline";
			$$("pprTextEn").style.display = "none";
			$$("pprTextEs").style.display = "none";
			$$("pprTextFr").style.display = "none";
		break;
		case 'eng':
			$$("eepTextIt").style.display = "none";
			$$("eepTextEn").style.display = "inline";
			$$("eepTextEs").style.display = "none";
			$$("eepTextFr").style.display = "none";
			$$("co2TextIt").style.display = "none";
			$$("co2TextEn").style.display = "inline";
			$$("co2TextEs").style.display = "none";
			$$("co2TextFr").style.display = "none";
			$$("pprTextIt").style.display = "none";
			$$("pprTextEn").style.display = "inline";
			$$("pprTextEs").style.display = "none";
			$$("pprTextFr").style.display = "none";
		break;
		case 'esp':
			$$("eepTextIt").style.display = "none";
			$$("eepTextEn").style.display = "none";
			$$("eepTextEs").style.display = "inline";
			$$("eepTextFr").style.display = "none";
			$$("co2TextIt").style.display = "none";
			$$("co2TextEn").style.display = "none";
			$$("co2TextEs").style.display = "inline";
			$$("co2TextFr").style.display = "none";
			$$("pprTextIt").style.display = "none";
			$$("pprTextEn").style.display = "none";
			$$("pprTextEs").style.display = "inline";
			$$("pprTextFr").style.display = "none";
		break;
		case 'fra':
			$$("eepTextIt").style.display = "none";
			$$("eepTextEn").style.display = "none";
			$$("eepTextEs").style.display = "none";
			$$("eepTextFr").style.display = "inline";
			$$("co2TextIt").style.display = "none";
			$$("co2TextEn").style.display = "none";
			$$("co2TextEs").style.display = "none";
			$$("co2TextFr").style.display = "inline";
			$$("pprTextIt").style.display = "none";
			$$("pprTextEn").style.display = "none";
			$$("pprTextEs").style.display = "none";
			$$("pprTextFr").style.display = "inline";
		break;
	}
}
function lightlogo(num){
	shutdownlogo();
	switch(num) {
		case 1:
			$$("f1").style.display = "inline";
		break;
		case 2:
			$$("f2").style.display = "inline";
		break;
		case 3:
			$$("f3").style.display = "inline";
		break;
		case 4:
			$$("f4").style.display = "inline";
		break;
		case 5:
			$$("f5").style.display = "inline";
		break;
		case 6:
			$$("f6").style.display = "inline";
		break;
		case 7:
			$$("f7").style.display = "inline";
		break;
		case 8:
			$$("f8").style.display = "inline";
		break;
		case 9:
			$$("f9").style.display = "inline";
		break;
	}
}
function shutdownlogo(){
	$$("f1").style.display = "none";
	$$("f2").style.display = "none";
	$$("f3").style.display = "none";
	$$("f4").style.display = "none";
	$$("f5").style.display = "none";
	$$("f6").style.display = "none";
	$$("f7").style.display = "none";
	$$("f8").style.display = "none";
	$$("f9").style.display = "none";
}
//Check form lavoraconnoi
function validJobForm(){
	isValid = 0;
	if(!$$)return;
	if($$("Name").value == "" || $$("Name").value == "il tuo nome qui"){
		$$("Name").style.color = "#ff0000";
		$$("Name").style.textAlign = "center";
		$$("Name").value = "il tuo nome qui";
	} else {
		isValid++;
	}
	if($$("Surname").value == "" || $$("Surname").value == "il tuo cognome qui"){
		$$("Surname").style.color = "#ff0000";
		$$("Surname").style.textAlign = "center";
		$$("Surname").value = "il tuo cognome qui";
	} else {
		isValid++;
	}
	if($$("Address").value == "" || $$("Address").value == "il tuo indirizzo qui"){
		$$("Address").style.color = "#ff0000";
		$$("Address").style.textAlign = "center";
		$$("Address").value = "il tuo indirizzo qui";
	} else {
		isValid++;
	}
	if($$("City").value == "" || $$("City").value == "la tua citta' qui"){
		$$("City").style.color = "#ff0000";
		$$("City").style.textAlign = "center";
		$$("City").value = "la tua citta' qui";
	} else {
		isValid++;
	}
	if($$("Phone").value == "" || $$("Phone").value == "Il tuo telefono qui"){
		$$("Phone").style.color = "#ff0000";
		$$("Phone").style.textAlign = "center";
		$$("Phone").value = "Il tuo telefono qui";
	} else {
		isValid++;
	}
	if($$("Email").value == "" || $$("Email").value == "la tua email qui" || $$("Email").value == "un'email corretta per favore"){
		$$("Email").style.color = "#ff0000";
		$$("Email").style.textAlign = "center";
		$$("Email").value = "la tua email qui";
	} else if(emailControl($$("Email").value) == false || $$("Email").value == "la tua email qui"){
		$$("Email").style.color = "#ff0000";
		$$("Email").style.textAlign = "center";
		$$("Email").value = "un'email corretta per favore";
	} else {
		isValid++;
	}
	if(isValid == 6){
		$$("sendNow").click();
	} else {
		isValid++;
	}
}
//Check form visite
function validVisitForm(){
	isValid = 0;
	if(!$$)return;
	if($$("School").value == "" || $$("School").value == "la tua scuola qui"){
		$$("School").style.color = "#ff0000";
		$$("School").style.textAlign = "center";
		$$("School").value = "la tua scuola qui";
	} else {
		isValid++;
	}
	if($$("Reference").value == "" || $$("Reference").value == "il referente qui"){
		$$("Reference").style.color = "#ff0000";
		$$("Reference").style.textAlign = "center";
		$$("Reference").value = "il referente qui";
	} else {
		isValid++;
	}
	if($$("City").value == "" || $$("City").value == "la tua cittą qui"){
		$$("City").style.color = "#ff0000";
		$$("City").style.textAlign = "center";
		$$("City").value = "la tua cittą qui";
	} else {
		isValid++;
	}
	if($$("Phone").value == "" || $$("Phone").value == "Il tuo telefono qui"){
		$$("Phone").style.color = "#ff0000";
		$$("Phone").style.textAlign = "center";
		$$("Phone").value = "Il tuo telefono qui";
	} else {
		isValid++;
	}
	if($$("Email").value == "" || $$("Email").value == "la tua email qui" || $$("Email").value == "un'email corretta per favore"){
		$$("Email").style.color = "#ff0000";
		$$("Email").style.textAlign = "center";
		$$("Email").value = "la tua email qui";
	} else if(emailControl($$("Email").value) == false || $$("Email").value == "la tua email qui"){
		$$("Email").style.color = "#ff0000";
		$$("Email").style.textAlign = "center";
		$$("Email").value = "un'email corretta per favore";
	} else {
		isValid++;
	}
	if(isValid == 5){
		$$("sendNow").click();
	} else {
		isValid++;
	}
}

function emailControl(emailInput) {
   var StrMail;
   StrMail=emailInput;
   if (StrMail.length>6)
      {
      var pos;
      var dotpos;
      pos = StrMail.indexOf("@");
      if ( (pos >= (StrMail.length-3) ) || (pos < 2) )
         {
    
         return (false);
         }
      pos=pos+1;
      dotpos = StrMail.indexOf(".", pos);
      if (dotpos > (StrMail.length-3) )
         {
        
         return (false);
         }
      Strmail=StrMail.substr(pos);
      if ( (StrMail.length < 5) || (dotpos <= 0) )
         {
       
         return (false);
         }
      }
   else
      {
      
      return (false);
      }
   return true;
}
function resetContact(what){
	if(!$$)return;
	if($$(what).style.textAlign == "center"){
		$$(what).style.color = "#1c3a53";
		$$(what).style.textAlign = "left";
		$$(what).value = "";
	}
}
