/* REPORTS PAGE */
function init_dw_Scroll() {
    var wndo = new dw_scrollObj('wnRPT', 'lyrRPT1');
    wndo.setUpScrollbar("dragBarRPT", "trackRPT", "v", 1, 1);
    wndo.setUpScrollControls('scrollbarRPT');
}
 
// if code supported, link in the style sheet and call the init function onload
if ( dw_scrollObj.isSupported() ) {
    dw_writeStyleSheet('/styles/style.css')
    dw_Event.add( window, 'load', init_dw_Scroll);
}

