/* form mail */
function form_servizi(theForm) {

	
if (theForm.nome.value == "") {
    alert("Compilare il campo Nome");
    theForm.nome.focus();
    return (false);
  }

if (theForm.email.value == "") {
    alert("Compilare il campo E-mail");
    theForm.email.focus();
    return (false);
  }
  
if (theForm.email.value.length < 7) {
    alert("L'indirizzo e-mail deve essere di almeno 6 caratteri ");
    theForm.email.focus();
    return (false);
  }
 
if (theForm.email.value.indexOf("@") == -1) {
    alert("l'indirizzo e-mail non contiene il carattere @");
    theForm.email.focus();
    return (false);
  }
 
if (theForm.email.value.indexOf(".") == -1) {
    alert("l'indirizzo e-mail non contiene estensioni");
    theForm.email.focus();
    return (false);
  }

if (theForm.telefono.value == "") {
    alert("Compilare il campo Telefono");
    theForm.telefono.focus();
    return (false);
  }
  
    return (true);
}

//------------------------------------------------------------------- ------------------------------------------------- 

function form_LavoraConNoi(theForm) {

if (theForm.nome.value == "") {
    alert("Compilare il campo Nome");
    theForm.nome.focus();
    return (false);
  }

if (theForm.email.value == "") {
    alert("Compilare il campo E-mail");
    theForm.email.focus();
    return (false);
  }
  
if (theForm.email.value.length < 7) {
    alert("L'indirizzo e-mail deve essere di almeno 6 caratteri ");
    theForm.email.focus();
    return (false);
  }
 
if (theForm.email.value.indexOf("@") == -1) {
    alert("l'indirizzo e-mail non contiene il carattere @");
    theForm.email.focus();
    return (false);
  }
 
if (theForm.email.value.indexOf(".") == -1) {
    alert("l'indirizzo e-mail non contiene estensioni");
    theForm.email.focus();
    return (false);
  }

  if (theForm.localita.value == "") {
    alert("Compilare il campo Localita");
    theForm.localita.focus();
    return (false);
  }

    return (true);
}


