 
    g_virtualPath = "";
    g_frontEnd = true;
        
    //start the watcher
    hxj_AddEvent(window, "onload", function() {                
        var column1 = hxj_FindObject("sidebar_table1");
        var column2 = hxj_FindObject("sidebar_table2");
        
        if (column1 != null || column2 != null) {      
            var sheetBody = hxj_FindObject("ss_sheet_body");
            var position = "relative";
              
            if (_oB.isIE) {
                position = sheetBody.style.position;
                sheetBody.style.position = "static";
            }
            
            if (column1 != null) {
                column1.style.height = column1.parentNode.offsetHeight + "px";
                hxj_FindChild(column1, "div").style.height = column1.style.height; 
            }
            
            if (column2 != null) {
                column2.style.height = column2.parentNode.offsetHeight + "px";
                hxj_FindChild(column2, "div").style.height = column2.style.height;
            }
                    
            if (_oB.isIE) {
                sheetBody.style.position = position;
            }
        }
        
    });
 

