wf.showAlertOnError = false;

function myCustomValidation (evt) {
	if(wf.formValidation(evt)) new Ajax.Updater('result', '/lead_gen/sendmail.php',{onLoading:function(request){sendmail()},onComplete:function(request){handelrequest(); setTimeout('window.location = "http://www.telemarketing.gb.com/enquiry-submitted/"',2000);},parameters:Form.serialize(document.forms['contact']), insertion:Insertion.Bottom, asynchronous:true});
	return wf.utilities.XBrowserPreventEventDefault(evt);
}
		function sendmail() {
			//Make the Progress Bar Appear
			new Effect.Appear('progress');
		}
		function handelrequest() {
				new Effect.Fade('progress');
				new Effect.BlindUp('contact_form');
				new Effect.Appear('result');
		}