function Form_Validator_Guasti(theForm)
{		

		if(theForm.localita_guasto.value == "")
		{
		
			alert("Inserire un valore nel campo \"Luogo e località\".");
    		theForm.localita_guasto.focus();
    		return (false);
		}
		
		
		if(theForm.tipo_guasto.selectedIndex < 0)
  		{
    		
			alert("Selezionare una delle opzioni di \"Tipo guasto\".");
    		theForm.tipo_guasto.focus();
    		return (false);
  		}
	
  		if(theForm.tipo_guasto.selectedIndex == 0)
  		{
    		
			alert("La prima opzione di \"Tipo guasto\" non é una selezione valida. Scegliere un'altra opzione.");
    		theForm.tipo_guasto.focus();
    		return (false);
  		}
		

		if((theForm.telefono_email.value == "") )
		{
   			
			alert("Inserire un nr di telefono o un indirizzo e-mail valido. ");   
   			theForm.telefono_email.focus();
   			return (false);
		}
		
		if (theForm.captcha.value == "")
		  {
		    alert("Codice non inserito");
		    theForm.captcha.focus();
		    return (false);
		  }
        
  	return(true);
	  
}
