﻿// JScript File
function OrderButtonCheck(buttonId,CheckboxId)
{
    var btn = document.getElementById(buttonId);
    var chk = document.getElementById(CheckboxId);
    if (btn == null || chk == null) return;
    
    btn.disabled = !chk.checked;
}

function OpenFormWindow(addr)
{
window.open(addr,'popupwindow','width=650,scrollbars=1,resizable=1');return false;
}