﻿var selectResult;
function ActOnResult(thisChoice) {
    //capture final leaf value
    var choiceValue = thisChoice.getAttribute('choicevalue');
    //alert(choiceValue);
    var divCountries = document.getElementById('divCountries');
    var divWhereToBuyLink = document.getElementById('divWhereToBuyLink');
    var divWholesale = document.getElementById('divWholesale');
    var divComments = document.getElementById('divComments');
    var divSubmit = document.getElementById('divSubmit');
    var divPurchaseForm = document.getElementById('divPurchaseForm');
    
    var txtComments = document.getElementById('ctl00_cphBody_txtComments');
    var txtPurchaserName = document.getElementById('ctl00_cphBody_txtPurchaserName');
    var txtPurchaserAddress = document.getElementById('ctl00_cphBody_txtPurchaserAddress');
    var txtPurchaserEmail = document.getElementById('ctl00_cphBody_txtPurchaserEmail');
    var txtLastName = document.getElementById('ctl00_cphBody_txtLastName');
    var txtAddress = document.getElementById('ctl00_cphBody_txtAddress');
    var txtAddress2 = document.getElementById('ctl00_cphBody_txtAddress2');
    var txtCity = document.getElementById('ctl00_cphBody_txtCity');
    var txtState = document.getElementById('ctl00_cphBody_txtState');
    var txtZip = document.getElementById('ctl00_cphBody_txtZip');
    var selCountries = document.getElementById('ctl00_cphBody_selCountries');    
    
    //turn all off
    divSubmit.style.display = 'none';
    divComments.style.display = 'none';
    divWholesale.style.display = 'none';
    divCountries.style.display = 'none';
    divWhereToBuyLink.style.display = 'none';
    
    selectResult = choiceValue;
    //specific choices
    switch (choiceValue) {

        case "Retailers":
            divWhereToBuyLink.style.display = 'block';
            divPurchaseForm.style.display = 'none';
            divCountries.style.display = 'none';
            divComments.style.display = 'none';
            divSubmit.style.display = 'none';
            break;
        case "Wholesale quantities":
            divWholesale.style.display = 'block';
            divWhereToBuyLink.style.display = 'none';
            divPurchaseForm.style.display = 'none';
            divCountries.style.display = 'none';
            divComments.style.display = 'none';
            divSubmit.style.display = 'none';
            break;
        case "Looking for a retailer":
            divWhereToBuyLink.style.display = 'none';
            divPurchaseForm.style.display = 'block';
            divCountries.style.display = 'block';
            divComments.style.display = 'block';
            divSubmit.style.display = 'block';
            txtComments.value = "Looking for a retailer (" + selCountries.value + "):";
            window.location = "GlobalPresence.aspx";
            break;
        case "Current Distributor":
            divWhereToBuyLink.style.display = 'none';
            divPurchaseForm.style.display = 'block';
            divCountries.style.display = 'block';
            divComments.style.display = 'block';
            divSubmit.style.display = 'block';
            txtComments.value = "Want to Purchase from a Current Distributor (" + selCountries.value + "):";
            break;
        case "Become a Distributor":
            divWhereToBuyLink.style.display = 'none';
            divPurchaseForm.style.display = 'block';
            divCountries.style.display = 'block';
            divComments.style.display = 'block';
            divSubmit.style.display = 'block';
            txtComments.value = "Want to Become a Distributor(" + selCountries.value + "):";
            break;
        case "General Comment":
            divWhereToBuyLink.style.display = 'none';
            divPurchaseForm.style.display = 'block';
            divComments.style.display = 'block';
            divSubmit.style.display = 'block';
            txtComments.value = "General Comment:";
            break;
    }

}

function SelectCountry(thisDDL) {
    var divSubmit = document.getElementById('divSubmit');
    var divPurchaseForm = document.getElementById('divPurchaseForm');
    var divWhereToBuyLink = document.getElementById('divWhereToBuyLink');
    var txtComments = document.getElementById('ctl00_cphBody_txtComments');
    
    divWhereToBuyLink.style.display = 'none';
    divPurchaseForm.style.display = 'none';
    divSubmit.style.display = 'none';
    switch (selectResult) {
        case "Retailers":
            divWhereToBuyLink.style.display = 'block'; 
            break;
        case "Wholesale quantities":
            break;
        case "Looking for a retailer":
            txtComments.value = "Looking for a retailer (" + thisDDL.value + "):";
            break;
        case "Current Distributor":
            divPurchaseForm.style.display = 'block';
            divSubmit.style.display = 'block';
            txtComments.value = "Want to Purchase from a Current Distributor (" + thisDDL.value + "):"; 
            break;
        case "Become a Distributor":
            divPurchaseForm.style.display = 'block';
            divSubmit.style.display = 'block';
            txtComments.value = "Want to Become a Distributor(" + thisDDL.value + "):";
            break;
        case "General Comment":
            break;
    }
}