// JavaScript Document

function copyAll(){
var check=document.getElementById('copy').value;
document.getElementById('Customer_BillFirstName').value=document.getElementById('Customer_ShipFirstName').value;
document.getElementById('Customer_BillLastName').value=document.getElementById('Customer_ShipLastName').value;
document.getElementById('Customer_BillEmail').value=document.getElementById('Customer_ShipEmail').value;
document.getElementById('Customer_BillPhone').value=document.getElementById('Customer_ShipPhone').value;
document.getElementById('Customer_BillFax').value=document.getElementById('Customer_ShipFax').value;
document.getElementById('Customer_BillCompany').value=document.getElementById('Customer_ShipCompany').value;
document.getElementById('Customer_BillAddress').value=document.getElementById('Customer_ShipAddress').value;
document.getElementById('Customer_BillCity').value=document.getElementById('Customer_ShipCity').value;
document.getElementById('Customer_BillState').value=document.getElementById('Customer_ShipState').value;
document.customerForm.Customer_BillStateSelect.selectedIndex= document.customerForm.Customer_ShipStateSelect.selectedIndex;
document.getElementById('Customer_BillZip').value=document.getElementById('Customer_ShipZip').value;
document.customerForm.Customer_BillCountry.selectedIndex = document.customerForm.Customer_ShipCountry.selectedIndex ;
}

function copyAll_checkout(){
var check=document.getElementById('copy').value;
document.getElementById('BillFirstName').value=document.getElementById('ShipFirstName').value;
document.getElementById('BillLastName').value=document.getElementById('ShipLastName').value;
document.getElementById('BillEmail').value=document.getElementById('ShipEmail').value;
document.getElementById('BillPhone').value=document.getElementById('ShipPhone').value;
document.getElementById('BillFax').value=document.getElementById('ShipFax').value;
document.getElementById('BillCompany').value=document.getElementById('ShipCompany').value;
document.getElementById('BillAddress').value=document.getElementById('ShipAddress').value;
document.getElementById('BillCity').value=document.getElementById('ShipCity').value;
document.getElementById('BillState').value=document.getElementById('ShipState').value;
document.customerForm.BillStateSelect.selectedIndex= document.customerForm.ShipStateSelect.selectedIndex;
document.getElementById('BillZip').value=document.getElementById('ShipZip').value;
document.customerForm.BillCountry.selectedIndex = document.customerForm.ShipCountry.selectedIndex ;
}