
/* for menu editor */
var MENU_MAX_DEPTH = 3;
var debug = 0;      // 2 - something is wrong; 3 - report missing xml nodes

/** State of "Is popup" check box in "Create Special Page" dialog.
 * Possible values:
 * "HIDDEN" - only special pages can be added, the checkbox is hidden
 * "DISABLED" - only special pages can be added, the checkbox is visible,
 *   but disabled (grayed)
 * "ENABLED" - both special pages and popups can be created
 */
var ISPOPUP_STATE = "ENABLED";

/* Additional parameters for the News module */
var SHOW_LIST_ITEM_PARAMETERS = false;

// Root of the site (including trailing slash).
var gFramework = "http://www.ephorus.nl:80/";

/* displaying popups from list of popups in administration */
function displayPopup(url){
    newPopup = window.open(
        url,
        "",
        "height=300, width=400, menubar=no, resizable=yes, " +
        "scrollbars=yes, status=no, titlebar=yes, toolbar=no, " +
        "left=" + (screen.availWidth/5*2) + ", " +
        "top=" + (screen.availHeight/5*1)
        );
}
