﻿function OpenPopup(path, scrollable, width, height) {
    var options = 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,'
        + 'scrollbars=' + (scrollable ? 'yes' : 'no') + ','
        + 'width=' + (width ? width : '600') + ','
        + 'height=' + (height ? height : '720');
    window.open(path, name, options);
}

function OpenPopupEmailDisclaimer(emailAddress) {
    window.open(emailAddress, 'email');
}

function CloseWindow() {
    //    setTimeout("window.close()", 10000);
    window.close();
}
