	function CampiObbligatoriContatti(){
		Form = document.forms["mod_cont"];
		var Nome =Form.nome.value;
		var Cognome =Form.cognome.value;
		var Email=Form.email.value;
		var Phone=Form.telefono.value;
		var Azienda=Form.azienda.value;
		var Paese=Form.paese.value;
		
		if ((Nome == "") || (Nome == "undefined")) {
   			alert("Il campo Nome e' obbligatorio.");
   			return false;
		} 
		else if ((Cognome == "") || (Cognome == "undefined")) {
   			alert("Il campo Cognome e' obbligatorio.");
   			return false;
		}
		else if ((Email == "") || (Email == "undefined")) {
   			alert("Il campo Email e' obbligatorio.");
   			return false;
		} 
		else if ((Phone == "") || (Phone == "undefined")) {
   			alert("Il campo Telefono e' obbligatorio.");
   			return false;
		} 
		else if ((Azienda == "") || (Azienda == "undefined")) {
   			alert("Il campo Azienda e' obbligatorio.");
   			return false;
		} 
		else if ((Paese == "") || (Paese == "undefined")) {
   			alert("Il campo Paese e' obbligatorio.");
   			return false;
		}

		else {
			Form.submit();
		}
	}
	
	function CampiObbligatoriConosciamoci(){
		Form = document.forms["mod_cont"];
		var Nome =Form.nome.value;
		var Cognome =Form.cognome.value;
		var Email=Form.email.value;
		var Phone=Form.telefono.value;
		var Azienda=Form.azienda.value;
		var Paese=Form.paese.value;
		
		if ((Nome == "") || (Nome == "undefined")) {
   			alert("Il campo Nome e' obbligatorio.");
   			return false;
		} 
		else if ((Cognome == "") || (Cognome == "undefined")) {
   			alert("Il campo Cognome e' obbligatorio.");
   			return false;
		}
		else if ((Email == "") || (Email == "undefined")) {
   			alert("Il campo Email e' obbligatorio.");
   			return false;
		} 
		else if ((Phone == "") || (Phone == "undefined")) {
   			alert("Il campo Telefono e' obbligatorio.");
   			return false;
		} 
		else if ((Azienda == "") || (Azienda == "undefined")) {
   			alert("Il campo Eta e' obbligatorio.");
   			return false;
		} 
		else if ((Paese == "") || (Paese == "undefined")) {
   			alert("Il campo Professione e' obbligatorio.");
   			return false;
		}

		else {
			Form.submit();
		}
	}

	function CampiObbligatoriSuggerisci(){
		Form = document.forms["mod_cont"];
		var Nome =Form.nome.value;
		var Cognome =Form.cognome.value;
		var Email=Form.email.value;
		var Amico=Form.amico.value;
		var Azienda=Form.azienda.value;
		
		if ((Nome == "") || (Nome == "undefined")) {
   			alert("Il campo Nome e' obbligatorio.");
   			return false;
		} 
		else if ((Cognome == "") || (Cognome == "undefined")) {
   			alert("Il campo Cognome e' obbligatorio.");
   			return false;
		}
		else if ((Email == "") || (Email == "undefined")) {
   			alert("Il campo Email e' obbligatorio.");
   			return false;
		} 
		else if ((Amico == "") || (Amico == "undefined")) {
   			alert("Il campo Email del tuo amico e' obbligatorio.");
   			return false;
		} 
		else if ((Azienda == "") || (Azienda == "undefined")) {
   			alert("Il campo Azienda e' obbligatorio.");
   			return false;
		} 

		else {
			Form.submit();
		}
	}

	

