﻿// Disables all input controls on bodyload
function DisableControls() {
    window.event.cancelBubble = true;

    document.body.style.cursor = "wait";
    nr = document.forms[0].all.length;
    for (i = 0; i < nr; i++) {
        if (document.forms[0].all(i).tagName == "SELECT" || document.forms[0].all(i).type == "submit" ||
        (document.forms[0].all(i).tagName == "INPUT" &&
        (document.forms[0].all(i).type == "radio" || document.forms[0].all(i).type ==
        "checkbox" || document.forms[0].all(i).type == "button")))
            document.forms[0].all(i).disabled = true;
    }
}

// Opens a popup window
function OpenPopup(width, height, url, scrollbars, name) {
    window.open(url, name, 'width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',toolbar=no,location=no');
}