
// form functions

function reportError(request)
{
	alert('Errore di Comunicazione');
}

function CheckAndSend()
{
	var name = document.getElementById("nome_f");
	var email = document.getElementById("email_f");
    var richiesta = document.getElementById("richiesta_f");

	var url = "sendcontact.php";
	var params = "?name=" + name.value + "&email=" + email.value + "&richiesta=" + richiesta.value;
	new Ajax.Request( url+params, {method: 'post', onFailure: reportError, onComplete:
			function(t){
				if (t.responseText == 'sent') {
					document.getElementById('shoutme_ok').style.display = 'block';
					document.getElementById('shoutme_ko').style.display = 'none'; 
				} else {
					document.getElementById('shoutme_ko').style.display = 'block';
					document.getElementById('shoutme_ok').style.display = 'none'; 
				}
			}
		});
	}
	
	
