function sameBillingInfo(chkValue) {
	if (chkValue == true) {
		document.frmCheckout.bill_first_name.value = document.frmCheckout.ship_first_name.value;
		document.frmCheckout.bill_last_name.value = document.frmCheckout.ship_last_name.value;
		document.frmCheckout.bill_address1.value = document.frmCheckout.ship_address1.value;
		document.frmCheckout.bill_address2.value = document.frmCheckout.ship_address2.value;
		document.frmCheckout.bill_city.value = document.frmCheckout.ship_city.value;
		document.frmCheckout.bill_state.value = document.frmCheckout.ship_state.value;
		document.frmCheckout.bill_zip.value = document.frmCheckout.ship_zip.value;
		document.frmCheckout.bill_day_phone.value = document.frmCheckout.ship_day_phone.value;
		document.frmCheckout.bill_evening_phone.value = document.frmCheckout.ship_evening_phone.value;
	}
}