<!--
function constrain(str,n){ 
  if(str.length > n){  
    var s = str.substr(0, n);
    var words = s.split(' '); 
    words[words.length-1] = '';
    str = words.join(' ') + '';
  }
return str;
}

function copyAddress() {
document.regForm.Customer_BillFirstName.value = document.regForm.Customer_ShipFirstName.value;
document.regForm.Customer_BillLastName.value = document.regForm.Customer_ShipLastName.value;
document.regForm.Customer_BillEmail.value = document.regForm.Customer_ShipEmail.value;
document.regForm.Customer_BillPhone.value = document.regForm.Customer_ShipPhone.value;
document.regForm.Customer_BillFax.value = document.regForm.Customer_ShipFax.value;
document.regForm.Customer_BillCompany.value = document.regForm.Customer_ShipCompany.value;
document.regForm.Customer_BillAddress.value = document.regForm.Customer_ShipAddress.value;
document.regForm.Customer_BillCity.value = document.regForm.Customer_ShipCity.value;
document.regForm.Customer_BillStateSelect.value = document.regForm.Customer_ShipStateSelect.value;
document.regForm.Customer_BillState.value = document.regForm.Customer_ShipState.value;
document.regForm.Customer_BillZip.value = document.regForm.Customer_ShipZip.value;
document.regForm.Customer_BillCountry.value = document.regForm.Customer_ShipCountry.value;
}

function copyAddress_CO() {
document.regForm.BillFirstName.value = document.regForm.ShipFirstName.value;
document.regForm.BillLastName.value = document.regForm.ShipLastName.value;
document.regForm.BillEmail.value = document.regForm.ShipEmail.value;
document.regForm.BillPhone.value = document.regForm.ShipPhone.value;
document.regForm.BillFax.value = document.regForm.ShipFax.value;
document.regForm.BillCompany.value = document.regForm.ShipCompany.value;
document.regForm.BillAddress.value = document.regForm.ShipAddress.value;
document.regForm.BillCity.value = document.regForm.ShipCity.value;
document.regForm.BillStateSelect.value = document.regForm.ShipStateSelect.value;
document.regForm.BillState.value = document.regForm.ShipState.value;
document.regForm.BillZip.value = document.regForm.ShipZip.value;
document.regForm.BillCountry.value = document.regForm.ShipCountry.value;
}


function showDiv(divId)
{
  document.getElementById(divId).style.visibility = "visible";
  document.getElementById(divId).style.height = "50px";
}

function hideDiv(divId)
{
  document.getElementById(divId).style.visibility = "hidden";
  document.getElementById(divId).style.height = "0px";
}

//-->
