function popupPage(page, s, l, t, w, h) {
	var windowprops = "location=no,menubars=no,toolbars=no,resizable=no" + ",scrollbars=" + s + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
	var URL = page;
	window.open(URL,"MenuPopup",windowprops);
}