// JavaScript Document
function sameAsBilling(form1){
	//alert("fdsaafg");
	//alert(form1.sameShipping.checked);
	if (form1.sameShipping.checked) {
		form1.fname_ship.value = form1.fname_bill.value;
		form1.lname_ship.value = form1.lname_bill.value;
		form1.phone_ship.value = form1.phone_bill.value;
		form1.address1_ship.value = form1.address1_bill.value;
		form1.address2_ship.value = form1.address2_bill.value;
		form1.city_ship.value = form1.city_bill.value;
		form1.state_ship.value = form1.state_bill.value;
		form1.country_ship.value = form1.country_bill.value;
		form1.zip_ship.value = form1.zip_bill.value;
	}
	if (!form1.sameShipping.checked) {
		form1.fname_ship.value = "";
		form1.lname_ship.value = "";
		form1.phone_ship.value = "";
		form1.address1_ship.value = "";
		form1.address2_ship.value = "";
		form1.city_ship.value = "";
		form1.state_ship.value = "";
		form1.country_ship.value = "";
		form1.zip_ship.value = "";
	}
}

