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

	
if (theForm.writer.value == "") {
    alert("Scrivi il tuo nome");
    theForm.writer.focus();
    return (false);
  }

if (theForm.dadove.value == "") {
    alert("Compila il campo Da Dove");
    theForm.dadove.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 non è corretto ");
    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.msg.value == "") {
    alert("Compilare il campo Messaggio");
    theForm.msg.focus();
    return (false);
  }
  
    return (true);
}
