function SubmitLead(Data){
		var MyAjax = new powerHTTP();
		
	//begin handling loading
		MyAjax.loading = function() {};
	//end handling loading
	
	//begin handling response
		MyAjax.complete = function(response) {
			if(MyAjax.was_successful()) {}
		};
	//end handling response

	//begin execute request
		//build form data
		var PostDataArray = new Array();
		for(Item in Data){
			PostDataArray.push(Item +"="+ Data[Item]);			
		}
		var PostData = PostDataArray.join("&");
		
		//make the http request
		MyAjax.post("/seo-tools/submit.html", PostData);	
	//end execute request	
}