function rrLead(Name,Mobile,Email, screen, url){
	jQuery(function($){
		
		$.ajax({
				type:'post',
				url : "http://realtyredefined.com/index.php",
				data : {
					"option" : "com_vprospectgen",
					"task" : "leadGeneration",
					"tmpl" : "component",
					"format" : "raw",
					"leadname" : Name,
					"email" : Email,
					"mobile" : Mobile,
					"url" : url,
					"leadpoint" : screen
				},
				success : function(data) {}
		
		});
	});
}
