// JavaScript Document


<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var sell_physaddress = "";
var sell_physcity = "";
var sell_physstate = "";
var sell_physzip = "";
var sell_physstate_index = 0;


function InitSaveVariablesSell(form) {
sell_physaddress = form.sell_physaddress.value;
sell_physcity = form.sell_physcity.value;
sell_physstate = form.sell_physstate.value;
sell_physzip = form.sell_physzip.value;
sell_physstate_index = form.sell_physstate.selectedIndex;
sell_physstate = form.sell_physstate[sell_physstate_index].value;
}

function useSellMailAddress(form) {
if (form.sell_physusemail.checked) {
InitSaveVariablesSell(form);
form.sell_physaddress.value = form.sell_mailaddress.value;
form.sell_physcity.value = form.sell_mailcity.value;
form.sell_physzip.value = form.sell_mailzip.value;
form.sell_physstate.selectedIndex = form.sell_mailstate.selectedIndex;
}
else {
form.sell_physaddress.value = sell_physaddress;
form.sell_physcity.value = sell_physcity;
form.sell_physzip.value = sell_physzip;
form.sell_physstate.selectedIndex = sell_physstate_index;

   }
}
//  End -->
