// Copy Billing Address to Shipping Address

function data_copy()
{

if(document.orderform.copy[0].checked){
document.orderform.ShipFirstName.value=document.orderform.BillFirstName.value;
document.orderform.ShipLastName.value=document.orderform.BillLastName.value;
document.orderform.ShipCompany.value=document.orderform.BillCompany.value;
document.orderform.ShipAddress.value=document.orderform.BillAddress.value;
document.orderform.ShipCity.value=document.orderform.BillCity.value;
document.orderform.ShipState.value=document.orderform.BillState.value;
document.orderform.ShipZip.value=document.orderform.BillZip.value;
document.orderform.ShipCountry.value=document.orderform.BillCountry.value;
document.orderform.ShipPhone.value=document.orderform.BillPhone.value;
document.orderform.ShipEMail.value=document.orderform.BillEMail.value;
}else{
document.orderform.ShipFirstName.value="";
document.orderform.ShipLastName.value="";
document.orderform.ShipCompany.value="";
document.orderform.ShipAddress.value="";
document.orderform.ShipCity.value="";
document.orderform.ShipState.value="";
document.orderform.ShipZip.value="";
document.orderform.ShipCountry.value="";
document.orderform.ShipPhone.value="";
document.orderform.ShipEMail.value="";
}

var shipstate = document.orderform.ShipState.value;
		
    switch (shipstate)
   {
     case 'nj':
      document.orderform.ApplyTax.checked=true;
      break;
     case 'NJ':
  document.orderform.ApplyTax.checked=true;
  break;
     case 'nJ':
      document.orderform.ApplyTax.checked=true;
      break;
     case 'Nj':
  document.orderform.ApplyTax.checked=true;
  break;
case 'n.j.':
      document.orderform.ApplyTax.checked=true;
      break;
     case 'N.J.':
  document.orderform.ApplyTax.checked=true;
  break;
case 'New Jersey':
  document.orderform.ApplyTax.checked=true;
  break;
case 'new jersey':
      document.orderform.ApplyTax.checked=true;
      break;

case 'NEW JERSEY':
  document.orderform.ApplyTax.checked=true;
  break;
default:
  document.orderform.ApplyTax.checked=false;
}


}