﻿// JScript File
function PopUp(URL) {
var l = 121;
var t = 119;
var w = 640;
var h = 480;
var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}

function PopUp2(URL, l, t, w, h) {
    var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
    popup = window.open(URL, "MenuPopup", windowprops);
}
