function reload( form ) {

	var fname = form.fname.value;
	var lname = form.lname.value;
	var address_1 = form.address_1.value;
	var address_2 = form.address_2.value;
	var city = form.city.value;
	var state = form.state.value;
	var zip = form.zip.value;
	var county = form.county.value;
	var phone = form.phone.value;
	var email = form.email.value;
	var notification = form.notification.value;
	var payment_method = form.payment_method.options[form.payment_method.options.selectedIndex].value;
	
	
	self.location='index.php?fname=' + fname + '&lname=' + lname + '&address_1=' + address_1 + '&address_2=' + address_2 + '&city=' + city + '&state=' + state + '&zip=' + zip + '&county=' + county + '&phone=' + phone + '&email=' + email + '&notification=' + notification + '&payment_method=' + payment_method;
		
} // end function reload