function valida(){
  						if (!confirm('Confermi i dati inseriti?')) return false;

  						if (document.getElementById('nome').value=='') {
    						alert('Compilare correttamente il campo Nome!');
    						document.getElementById('nome').focus();
   							return false;
  						}

  						if (document.getElementById('cognome').value=='') {
    						alert('Compilare correttamente il campo Cognome!');
    						document.getElementById('cognome').focus();
    						return false;
   						}

  						if (document.getElementById('azienda').value=='') {
   			 				alert('Compilare correttamente il campo Azienda!');
    						document.getElementById('azienda').focus();
    						return false;
   						}

  						if (document.getElementById('cittą').value=='') {
    						alert('Compilare correttamente il campo Cittą!');
   							document.getElementById('cittą').focus();
    						return false;
   						}

  						if (document.getElementById('telefono').value=='') {
   				 			alert('Compilare correttamente il campo Telefono!');
							document.getElementById('telefono').focus();
    						return false;
   						}

  						if (document.getElementById('cellulare').value=='') {
    						alert('Compilare correttamente il campo Cellulare!');
   			 				document.getElementById('cellulare').focus();
    						return false;
   						}

  						if (document.getElementById('email').value=='') {
    						alert('Compilare correttamente il campo Email!');
    						document.getElementById('email').focus();
    						return false;
   						}
	
  						if (document.getElementById('sito_web').value=='') {
    						alert('Compilare correttamente il campo Sito Web!');
    						document.getElementById('sito_web').focus();
    						return false;
   						}

  						if (document.getElementById('richiesta').value=='') {
    						alert('Compilare correttamente il campo Richiesta!');
    						document.getElementById('richiesta').focus();
   							return false;
   						}

  						return true;
					}