/*
***********************************************
controllo  che i campi del form siano compilati
http://www.northwind.it
***********************************************
*/
function Form_Validatorz(theForm)
{
  
  if (theForm.nome.value == "")
  {
    alert("Inserire un valore per il campo \"Nome\".");
    theForm.nome.focus();
    return (false);
  }
  
  if (theForm.email.value == "")
  {
    alert("Inserire un valore per il campo \"E-mail\".");
    theForm.email.focus();
    return (false);
  }
  
   if (theForm.textarea.value == "")
  {
    alert("Inserire un valore per il campo \"Spazio a Disposizione\".");
    theForm.textarea.focus();
    return (false);
  }
  
  return (true);
}
