function checkform ( form )
{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.nome.value == "") {
    alert( "Inserisci il nome e congnome o il nome della ditta." );
    form.nome.focus();
    return false ;
  }
  
  if (form.email.value == "") {
    alert( "Inserisci la tua email." );
    form.email.focus();
    return false ;
  }
  
  
  if (form.messaggio.value == "") {
    alert( "Inserisci il tuo messaggio." );
    form.messaggio.focus();
    return false ;
  }
  
  return true ;
}

