function popupWindow(page, loc_left, loc_top, size_width, size_height, scroll_ornot) {
	var windowprops = "location=no,scrollbars=" + scroll_ornot + ",menubars=no,toolbars=no,resizable=no" + ",left=" + loc_left + ",top=" + loc_top + ",width=" + size_width + ",height=" + size_height;
	var URL = page;
	popup = window.open(URL,"Popup",windowprops);
}
