window.addEvent('domready',function(){
					  var infiniURL	=	base_path+"sendmail.php";
						var sendreqs = new Request({
							url:infiniURL,
							method: 'post',
							onSuccess: function(txt) {
								alert(txt);
								var arrs	=	txt.split("|");
																 
								if(arrs[0]=="error"){
									if(arrs[1]=="vfcode"){
										alert('Incorrect verification code.');
									}
								}else{
									alert('Thank you for your enquiry, a consultant will contact you shortly.');
									//location.href=base_path+'successfully.html';
									window.location ="/successfully.html";
								//	location.href=location.href;
								}
							}
						});
					
					$('leftSubmit').addEvent('click', function(e) {
					
							e.stop();
							var messsages	=	vfrightFrom();
							if(messsages==""){
								sendreqs.send($('leftsendmail'));
							}else{
								alert(messsages);
							}
																
						});

});