function init_dw_Scroll() {
    var wndo = new dw_scrollObj('wn7', 'lyr7');
    wndo.setUpScrollbar("dragBar", "track", "v", 1, 1);
    // id, autohide (hide when not needed), axis
    wndo.setUpScrollControls('scrollbar', true, 'v');
    wndo.setUpScrollControls('wn7');
	
    
}

// if necessary objects exists link in the style sheet and call the init function onload
if ( document.getElementById && document.getElementsByTagName ) {
    dw_writeStyleSheet('c/extras_demo.css');
    addLoadEvent(init_dw_Scroll);
}