var ShipAddress1 = "";
var ShipAddress2 = "";
var ShipCity = "";
var ShipCountry = "";
var ShipState = "";
var ShipStateIndex = 0;
var ShipZip = "";

//var ShipFirst = "";
//var ShipLast = "";
//var ShipEmail = "";
//var ShipCompany = "";
//var ShipTelephone = "";

function InitSaveVariables(form) {
ShipAddress1 = form.txt_ship_address1.value;
ShipAddress2 = form.txt_ship_address2.value;
ShipCity = form.txt_ship_city.value;
ShipCountry = form.txt_ship_country.value;
ShipStateIndex = form.txt_ship_state.selectedIndex;
ShipState = form.txt_ship_state.value;
ShipZip = form.txt_ship_zip.value;

//ShipFirst = form.ShipFirst.value;
//ShipLast = form.ShipLast.value;
//ShipEmail = form.ShipEmail.value;
//ShipCompany = form.ShipCompany.value;
//ShipTelephone = form.ShipTelephone.value;




}

function ShipToBillPerson(form) {
if (form.copy.checked) {
InitSaveVariables(form);
form.txt_ship_address1.value = form.txt_bill_address1.value;
form.txt_ship_address2.value = form.txt_bill_address2.value;
form.txt_ship_city.value = form.txt_bill_city.value;
form.txt_ship_country.value = form.txt_bill_country.value;
form.txt_ship_state.value = form.txt_bill_state.value;
form.txt_ship_zip.value = form.txt_bill_zip.value;

//form.ShipFirst.value = form.BillFirst.value;
//form.ShipLast.value = form.BillLast.value;
//form.ShipEmail.value = form.BillEmail.value;
//form.ShipCompany.value = form.BillCompany.value;
//form.ShipTelephone.value = form.BillTelephone.value;




}
else 
{
form.txt_ship_address1.value = ShipAddress1;
form.txt_ship_address2.value = ShipAddress2;
form.txt_ship_city.value = ShipCity;
form.txt_ship_country.value = ShipCountry;
form.txt_ship_state.value = ShipState;
form.txt_ship_zip.value = ShipZip;  

//form.ShipFirst.value = ShipFirst;
//form.ShipLast.value = ShipLast;
//form.ShipEmail.value = ShipEmail;
//form.ShipCompany.value = ShipCompany;
//form.ShipTelephone.value = ShipTelephone;
     



   }
}

