﻿    function copyEmail(){
        //this lil function copies the email from the email boxes
        //elem = document.getElementById("para1");
       
        email1 = document.getElementById("ctl00_MainContent_emailInput");
        email2 = document.getElementById("ctl00_MainContent_companyEmailInput");
        email2.value = email1.value;
    }
    
    function copyPhone(){
        //copy the phone numbers
        phone1 = document.getElementById("ctl00_MainContent_contactNumberInput");
        phone2 = document.getElementById("ctl00_MainContent_companyNumberInput");        
        phone2.value = phone1.value;
    }
    
    function copyAddress(){
        //copy the phone numbers
        add1 = document.getElementById("ctl00_MainContent_addressInput");
        add2 = document.getElementById("ctl00_MainContent_companyAddressInput");        
        add2.value = add1.value;
    }
    
    function copyPostcode(){
        //copy the phone numbers
        postcode1 = document.getElementById("ctl00_MainContent_postcodeInput");
        postcode2 = document.getElementById("ctl00_MainContent_companyPostCodeInput");        
        postcode2.value = postcode1.value;
    }

    function vatClick() {
        //test the vat click shizzle
        VatCheckValue = document.getElementById("ctl00_MainContent_VatCheckBox");
        temp1 = document.getElementById("ctl00_MainContent_VatLabel");
        temp2 = document.getElementById("ctl00_MainContent_VatInput");

        if (!VatCheckValue.checked) {
            temp2.disabled = true;
            temp2.setAttribute("class", "disabledInput");
            temp2.value = "";
        } else {
            temp2.disabled = false;
            temp2.setAttribute("class", "activeInput");
            temp2.value = "";
        }
        //temp1.visible = true;
        //temp2.visible = true;
    }
        
