
/* Function used for sending the contact form data
   to the mailer script */
function sendMail() { 

	// Grab targets
	var fullname = $('fullname').value;
	var phoneno = $('phoneno').value;
	var email = $('email').value;
	var message = $('message').value;

	// Send ajax request
	new Ajax.Request("/mail.php?fn=" + encodeURIComponent(fullname) + "&pn=" + encodeURIComponent(phoneno) + "&em=" + encodeURIComponent(email) + "&me=" + encodeURIComponent(message)  , {  method: 'get', onSuccess: function(transport) {  mailOK(); } });

}

function mailOK() {
	
	// Display thankyou message
	new Effect.Fade('form-send', {duration:0.8 , afterFinish:function(){ $('form-sent').style.display = "block"; } }); 
}
