function submitpreventivo() {

	if(!testEmail($('email'),true)) {
		alert("L'email non e' corretta");
		$('email').focus();
		void(0);
		return;
	}

	if(!testCampoTesto($('cognome'),true)) {
		alert("Il cognome e' obbligatorio");
		$('cognome').focus();
		void(0);
		return;
	}

	if(!testCampoTesto($('nome'),true)) {
		alert("Il nome e' obbligatorio");
		$('nome').focus();
		void(0);
		return;
	}

	if(!testCampoTesto($('telefono'),true)) {
		alert("Il telefono e' obbligatorio");
		$('telefono').focus();
		void(0);
		return;
	}


	if ($('check').checked) {
		$('formpreventivo').submit();
		return false;
	} else {
		alert("Non hai spuntato la casellina della privacy.");
		void(0);
	}
}



function submitdepliant() {

	if ($('check').checked) {
		$('formdepliant').submit();
		return false;
	} else {
		alert("Non hai spuntato la casellina della privacy.");
		void(0);
	}

}
