
function sendMail(){
	var sendingMail = 1;

	if (sendingMail == 1) {
		var ajax = new sack();
		function whenLoading(){ }
		function whenCompleted(){
			//location.href = 'thanks.html';
			alert('Grazie per la richiesta inviataci, vi risponderemo quanto prima. GIOVANNI VIGNUDA');
			location.href = 'contatti';
		}
		ajax.encVar("email", document.getElementById('email').value);
		ajax.encVar("nome", document.getElementById('nome').value);
		ajax.encVar("azienda", document.getElementById('azienda').value);
		ajax.encVar("telefono", document.getElementById('telefono').value);
		ajax.encVar("area", document.getElementById('area').value);
		ajax.encVar("messaggio", document.getElementById('messaggio').value);

		ajax.encVar("action", "MAIL");
		ajax.requestFile = "lib/proxy.php";
		ajax.method = "POST";
		ajax.onCompletion = whenCompleted;
		ajax.runAJAX();
	}
}

