function searchform ( form )
{
  if (form.search.value == "") {
    alert( "Il campo non puņ essere vuoto" );
    form.search.focus();
    return false ;
  }
  return true ;
}
function contatti ( form )
{
  if (form.nome.value == "") {
    alert( "Inserire il nome e il cognome" );
    form.nome.focus();
    return false ;
  }
  if (form.email.value == "") {
    alert( "Inserire l'indirizzo email" );
    form.email.focus();
    return false ;
  }
  if (form.richiesta.value == "") {
    alert( "Inserire la richiesta" );
    form.richiesta.focus();
    return false ;
  }
if (form.checkbox.checked == false)
	{
	alert("Spiacenti: in caso di mancata autorizzazione, non possiamo ricevere il messaggio (legge 196/03)")
	form.checkbox.focus();
	return (false);
	}
  return true ;
}
function checkpostit ( form )
{
  if (form.nome.value == "") {
    alert( "Inserire il nome e il cognome" );
    form.nome.focus();
    return false ;
  }
  if (form.email.value == "") {
    alert( "Inserire l'indirizzo email" );
    form.email.focus();
    return false ;
  }
  if (form.postit.value == "") {
    alert( "Inserire il messaggio" );
    form.postit.focus();
    return false ;
  }
if (form.checkbox.checked == false)
	{
	alert("Spiacenti: in caso di mancata autorizzazione, non possiamo ricevere il messaggio (legge 196/03)")
	form.checkbox.focus();
	return (false);
	}
  return true ;
}
function checkcommento ( form )
{
  if (form.nome.value == "") {
    alert( "Inserire il nome e il cognome" );
    form.nome.focus();
    return false ;
  }
  if (form.email.value == "") {
    alert( "Inserire l'indirizzo email" );
    form.email.focus();
    return false ;
  }
  if (form.commento.value == "") {
    alert( "Inserire il commento" );
    form.commento.focus();
    return false ;
  }
if (form.checkbox.checked == false)
	{
	alert("Spiacenti: in caso di mancata autorizzazione, non possiamo ricevere il messaggio (legge 196/03)")
	form.checkbox.focus();
	return (false);
	}
  if (form.number.value == "") {
    alert( "Inserire il codice di conferma" );
    form.number.focus();
    return false ;
  }
  return true ;
}