﻿//// JScript File


var checkFlag = false;
    
    function PopulateBillingInfo(){

     
    if (checkFlag) {
        checkFlag = false;
        document.getElementById("_ctl0_cph1_txtBillingFirstName").value = "";
        document.getElementById("_ctl0_cph1_txtBillingMI").value = "";
        document.getElementById("_ctl0_cph1_txtBillingLastName").value = "";
        document.getElementById("_ctl0_cph1_txtBillingPhone").value = "";
        document.getElementById("_ctl0_cph1_txtBillingEmail").value = "";
        document.getElementById("_ctl0_cph1_txtBillingCity").value = "";
        document.getElementById("_ctl0_cph1_txtBillingZip").value = "";
        document.getElementById("_ctl0_cph1_ddlBillingState").options.selectedIndex = "0";
        document.getElementById("_ctl0_cph1_ddlBillingCountry").options.selectedIndex = "0";
        
    }
    else {
        checkFlag = true;
        document.getElementById("_ctl0_cph1_txtBillingFirstName").value = document.getElementById("_ctl0_cph1_txtContactFirstName").value;
        document.getElementById("_ctl0_cph1_txtBillingMI").value = document.getElementById("_ctl0_cph1_txtContactMI").value;
        document.getElementById("_ctl0_cph1_txtBillingLastName").value = document.getElementById("_ctl0_cph1_txtContactLastName").value;
        document.getElementById("_ctl0_cph1_txtBillingPhone").value =  document.getElementById("_ctl0_cph1_txtContactPhone").value;
        document.getElementById("_ctl0_cph1_txtBillingEmail").value =  document.getElementById("_ctl0_cph1_txtContactEmail").value;
        document.getElementById("_ctl0_cph1_txtBillingCity").value =  document.getElementById("_ctl0_cph1_txtContactCity").value;
        document.getElementById("_ctl0_cph1_txtBillingZip").value =  document.getElementById("_ctl0_cph1_txtContactZip").value;
        document.getElementById("_ctl0_cph1_ddlBillingState").options.selectedIndex = document.getElementById("_ctl0_cph1_ddlContactState").options.selectedIndex;
        document.getElementById("_ctl0_cph1_ddlBillingCountry").options.selectedIndex = document.getElementById("_ctl0_cph1_ddlContactCountry").options.selectedIndex;
    }
    
}

