﻿// JScript File
function Popup(url) {
    var w = window.open(url, 'popup', 'height=600,width=800,toolbar=0,menubar=1,scrollbars=1,resizable=1,screenX=100,screenY=100,left=200,top=200');
    w.focus();
    return false;
}
function PopupHW(url, h, w) {
    var w = window.open(url, 'popup', 'height=' + h + ',width=' + w + ',toolbar=0,menubar=1,scrollbars=1,resizable=1,screenX=200,screenY=200,left=200,top=200');
    w.focus();
    return false;
}
//
