// Hickory Fest
// Toggle Billing and Shipping Information

function toggle(){
	if (document.checkout.chkShip.checked == true){
			document.checkout.txtShipFirst.readOnly = true; //first name
			document.checkout.txtShipFirst.value = document.checkout.txtFirst.value; //first name
			document.checkout.txtShipLast.readOnly = true; //last name
			document.checkout.txtShipLast.value = document.checkout.txtLast.value; //last name
			document.checkout.txtShipAddress.readOnly = true; //address 1
			document.checkout.txtShipAddress.value = document.checkout.txtAddress.value; //address 1
			document.checkout.txtShipAddress2.readOnly = true; //address 2
			document.checkout.txtShipAddress2.value = document.checkout.txtAddress2.value; //address 2
			document.checkout.txtShipCity.readOnly = true; //city
			document.checkout.txtShipCity.value = document.checkout.txtCity.value; //city
			document.checkout.ddlShipState.readOnly = true; //state
			document.checkout.ddlShipState.value = document.checkout.ddlState.value; //state
			document.checkout.txtShipZip.readOnly = true; //zip code
			document.checkout.txtShipZip.value = document.checkout.txtZip.value; //zip code
	} else{
			document.checkout.txtShipFirst.readOnly = false; //first name
			document.checkout.txtShipLast.readOnly = false; //last name
			document.checkout.txtShipAddress.readOnly = false; //address 1
			document.checkout.txtShipAddress2.readOnly = false; //address 2
			document.checkout.txtShipCity.readOnly = false; //city
			document.checkout.ddlShipState.readOnly = false; //state
			document.checkout.txtShipZip.readOnly = false; //zip code
	}
}