/**
 * @author russ
 */
 
if ((navigator.userAgent.indexOf('iPad') != -1)) {
	document.location = SITE_ROOT+"ipad/";
} 
 
function prequalify_process()
{
	var extras = new Object();
	extras.dont_hide_form = "1";
	//extras.dont_reset_form = "1";
	
	form_id = "thisForm";
	formProcessSetup(form_id);
	
	$.post(SITE_ROOT+"ajax/request_consultation_process.php",
		{ 
			operation: 'form_process', 
			first_name: $("#first_name").val(), 
			last_name: $("#last_name").val(), 
			email_address: $("#email_address").val(),
			phone: $("#phone_number").val(), 
			fax: $("#fax").val(), 
			state: $("#state").val(),
			consultation: $("#consultation").val(),
			comments: $("#comments").val() 
		},
		function(data){
			showResult(data,form_id, extras);
		}, 
		"json"
	);
	
}



