// start customer to ship form
<!-- Begin Shipping information transfer
var shipFirst = "";
var shipLast = "";
var shipCompany = "";
var shipAddress = "";
var shipCity = "";
var shipState = "";
var shipZip = "";
var shipCountry = "";

function InitSaveVariables(form) {
shipFirst = form.strfirstname.value;
shipLast = form.strLastname.value;
shipcompany = form.strCompany.value;
shipaddress = form.strAddress.value;
shipcity = form.strCity.value;
shipzip = form.StrPostcode.value;
shipstate = form.strstate.value;
shipCountry = form.StrCountry.value;
}
function ShipToBillPerson(form) {
if (form.copy.checked) {
InitSaveVariables(form);
form.shipname.value = form.strfirstname.value + " " + form.strLastname.value;
form.shipcompany.value = form.strCompany.value;
form.shipaddress.value = form.strAddress.value;
form.shiptown.value = form.strCity.value;
form.shipstate.value = form.strstate.value;
form.shipzip.value = form.StrPostcode.value;
form.shipCountry.value = form.StrCountry.value;
}
else {
form.shipname.value = "";
form.shipcompany.value = "";
form.shipaddress.value = "";
form.shiptown.value = "";
form.shipzip.value = "";
form.shipstate.value = "";
form.shipCountry.value = "";
}
}
// End Shipping info transfer-->
/*************************************************** Style Class Switcher */
function cs(obj,cls)
{
    obj.className = (cls)?cls:"";
}