// JavaScript Document

function Popup(URL, l, t, w, h) {
var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes" +
",left=" + 20 + ",top=" + 20 + ",width=" + 575 + ",height=" + 350;
popup = window.open(URL,"MenuPopup",windowprops);
}

function Popup_Video(URL, l, t, w, h) {
var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes" +
",left=" + 20 + ",top=" + 20 + ",width=" + 260 + ",height=" + 215;
popup = window.open(URL,"MenuPopup",windowprops);
}

function Popup_Old(URL, l, t, w, h) {
var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}
