function controllo_preventivo() {

	// Ottengo il testo contenuto nella searchbox
	
	
	var ragione_sociale = document.getElementById('ragione_sociale').value;
	var nome = document.getElementById('nome').value;
	var citta = document.getElementById('citta').value;
	var provincia = document.getElementById('provincia').value;
	var cellulare = document.getElementById('cellulare').value;

	if ((ragione_sociale=="") || (nome=="") || (citta=="") || (provincia=="") || (cellulare=="")) {
		alert("Attenzione! Devi inserire tutti i dati obbligatori");
		return false;
	}
	else {
		document.invia_form.submit();
	}	
}

