﻿// JScript File

function nullifyValue(id, originalValue) {
    if (document.getElementById(id).value == originalValue)
        document.getElementById(id).value = "";
}

function prefillValue(id, originalValue) {
    if (document.getElementById(id).value == "")
        document.getElementById(id).value = originalValue;
}


function checkForOther(SelectBoxID) {
    var SelectedValue = "";
    SelectOBJ = document.getElementById(SelectBoxID);

    SelectedValue = SelectOBJ[SelectOBJ.selectedIndex].value;

    OtherOBJ = document.getElementById(divOtherID);
    if (SelectedValue == 'Other') {
        OtherOBJ.style.display = '';
    }
    else {
        OtherOBJ.style.display = 'none';

    }

    SelectOBJ = document.getElementById(SelectBoxID);

    SelectedValue = SelectOBJ[SelectOBJ.selectedIndex].value

    if (SelectedValue == 'Other') {
        OtherOBJ = document.getElementById(divOtherID);
        OtherOBJ.style.display = '';
    }
}

function popupExtraProcessingTime() {
    alert('Choosing this option will add 3-4 additional business days to your order processing time.');
}




