//Javascript

function indietro(){
  history.back();
	return false;
}

function popupInformativa(info) {
	window.open(info,"informative","width=600,height=260,scrollbars=yes,resizable=yes");
	return false;
}

function controlloform(strLang){
	
	/*if (document.getElementById) 
		document.getElementById(id).style.color='#FFF';
	else if (document.all)
		document.all[id].style.color='#FFF';
	else if (document.layers)
		document.layers[id].color='#FFF';*/
	
  switch(strLang){
    case 'it':
      if (document.getElementById('Contatti').nome.value=="") {
    		alert("Ha dimenticato di inserire il Nome");
    	} else if (document.getElementById('Contatti').cognome.value=="") {
    		alert("Ha dimenticato di inserire il Cognome");
    	} else if (document.getElementById('Contatti').citta.value=="") {
    		alert("Ha dimenticato di inserire la Cittā");
    	} else if (!controlla_campo_mail(document.getElementById('Contatti').email.value)) {
    		return false;
    	} else if (document.getElementById('Contatti').messaggio.value=="") {
    		alert("Ha dimenticato di inserire il Messaggio");
    	} else if(document.getElementById('Contatti').accetto[0].checked){
    		document.getElementById('Contatti').submit();
    	} else {
    		alert("Dovresti accettare le condizioni dell'informativa per continuare");
    	}
    	break;
    case 'en':
      if (document.getElementById('Contatti').nome.value=="") {
    		alert("You forgot to insert your name");
    	} else if (document.getElementById('Contatti').cognome.value=="") {
    		alert("You forgot to insert your last name");
    	} else if (document.getElementById('Contatti').citta.value=="") {
    		alert("You forgot to insert your city");
    	} else if (!controlla_campo_mail(document.getElementById('Contatti').email.value)) {
    		return false;
    	} else if (document.getElementById('Contatti').messaggio.value=="") {
    		alert("You forgot to insert your message");
    	} else if(document.getElementById('Contatti').accetto[0].checked){
    		document.contact.submit();
    	} else {
    		alert("You must accept the D. Lgs 196/2003 concerning the safegarding of personal data");
    	}
    	break;
  }
	return false;
}

function controlla_campo_mail(campo,strLang) {
  _pattern=/^[\w\-]+(\.?\-?\w+)*@[a-zA-Z0-9]+(\.?\-?[a-zA-Z0-9]+){2,}\.[a-zA-Z]{2,}$/;
  if (_pattern.test(campo)==false) {
    switch(strLang){
      case'it':
        alert("Non č stato inserito un indirizzo mail valido");
        break;
      case'en':
        alert("Invalid email address!");
        break;
    }
    return false;
  }
  return true;
} 

//Fine Javascript
