function InviaOk() {
  var Msg0 = "Campo obbligatorio";
  var Msg1 = "Indirizzo non valido";
  var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
  var aCampo = new Array("nome","cognome","commento");
  i=0;
  while(i < aCampo.length) {
    sCampo = aCampo[i];
    campo = document.getElementById(sCampo).value;
	if ((campo == "") || (campo == "undefined")) {
      document.getElementById(sCampo).value = Msg0;
      document.getElementById(sCampo).style.background = "#fffacd";
      var flag = 1;
    }
  i++;
  }
  campo = document.getElementById("email").value;
  if ((campo == "") || (campo == "undefined")) {
    document.getElementById("email").value = Msg0;
    document.getElementById("email").style.background = "#fffacd";
  } else if (!email_reg_exp.test(campo)) {
    document.getElementById("email").value = Msg1;
    document.getElementById("email").style.background = "#fffacd";
    flag = 1;
  }
  
  if (flag == 1) {
    return(false);	   
  }
  //INVIA IL MODULO
  else {
    document.getElementById("thx").value = "cnt";
    document.getElementById("frm-contatti").action = "email.asp";
    document.getElementById("frm-contatti").submit();
  }
}

function sel (sId) {
  document.getElementById(sId).value =  "";
  document.getElementById(sId).style.background = "#fff";
}
