var DEBUG = false;

if(document.getElementById && document.createTextNode){
    window.onload = setup;
}
    function setup(){

        if(document.getElementById && document.createTextNode){

            if(typeof DOM_UTILITIES_LOADED === "undefined"){
                if(DEBUG){
                    alert("Could not load DomUtilities library");
                }
                
            }else{
            
                if(typeof COLLAPSIBLE_LIST_LOADED !== "undefined"){
                    lists = new ListManager("rootList");
                }
            }
        }
    }







