function DoIt(elm) {
	
	var btnSend = $("fSend"); // Send button
	btnSend.style.display = 'none';
	new Effect.Appear("Activity");
	
	var fName = $F("fName");
	var fPhone = $F("fPhone");
	var fEmail = $F("fEmail");
	var fDescription = $F("fDescription");
	
	//var url	= 'SendEmail.asp';
	var url	= 'SendEmail.php';
	var pars	= 	'fName=' + fName +
					'&fPhone=' + fPhone +
					'&fEmail=' + fEmail +
					'&fDescription=' + fDescription;
					
	var handlerFunc = function(t) {
    //alert(t.responseText);
    $("EmailResponse").innerHTML = t.responseText;
    //new Effect.Fade("Form");
    $("Form").style.display = 'none';
    new Effect.Appear("EmailResponse");  
    }
	
    var errFunc = function(t) {
        alert('Error ' + t.status + ' -- ' + t.statusText);
    }

	
	new Ajax.Updater ('EmailResponse', url, {
		method:'post',
		postBody:pars,
		asynchronous:true,
		onSuccess:handlerFunc,
		onFailure:errFunc
	});
	
		
}
