﻿// JScript File
function highlightBrand(ValueToFind) {
    if (ValueToFind != "") {
        document.getElementById("BrandIntro").style.display = '';
        document.getElementById("DaysoftBrandName").style.display = '';
        document.getElementById("DaysoftBrandName").innerHTML = arrWaterContents[ValueToFind];
    }
}

function initialise(BrandListValue) {
    highlightBrand(BrandListValue);
}

var OldQuantity = 0;

function showDeliveryMessage(Quantity) {
    
    if (Quantity > 0) {
        
        if (Quantity == 1 || Quantity == 2) {
            document.getElementById("DeliveryText").innerHTML = 'All orders delivered in mailbox friendly packages to your home or office.';
        } else if (Quantity == 4) {
            document.getElementById("DeliveryText").innerHTML = 'Your order will be delivered in 2 mailbox friendly packages to your home or office.';
        } else if (Quantity == 6) {
            document.getElementById("DeliveryText").innerHTML = 'Your order will be delivered in 3 mailbox friendly packages to your home or office.';
        }
    
    }
    
}

function ShowHideFaq(CategoryID) {
    
    if (document.getElementById('Faq' + CategoryID).style.display == 'none') {
        document.getElementById('Faq' + CategoryID).style.display = ''
    } else {
        document.getElementById('Faq' + CategoryID).style.display = 'none'
    }
    
}