﻿// JScript File
function ow(url, width, height) {
    win = window.open(url, 'Popup', 'location=1,toolbar=yes,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
    win.focus();
    return false;
}
function opw(url, width, height) {
    win = window.open(url, 'Popup', 'location=0,toolbar=no,scrollbars=yes,resizable=no,width=' + width + ',height=' + height);
    win.focus();
    return false;
}
function opwf(url, width, height) {
    win = window.open(url, 'Popup', 'location=0,toolbar=no,scrollbars=yes,resizable=no,width=' + width + ',height=' + height);
    win.focus();
}
