function init_dw_Scroll() {
/*    var wndo1 = new dw_scrollObj('wn1', 'lyr1');
    wndo1.setUpScrollbar("dragBar1", "track1", "v", 1, 1);
    wndo1.setUpScrollControls('scrollbar1');*/
    
    var wndo2 = new dw_scrollObj('wn2', 'lyr2');
    wndo2.setUpScrollbar("dragBar2", "track2", "v", 1, 1);
    wndo2.setUpScrollControls('scrollbar2');

	var wndo3 = new dw_scrollObj('wn3', 'lyr3');
    wndo3.setUpScrollbar("dragBar3", "track3", "v", 1, 1);
    wndo3.setUpScrollControls('scrollbar3');
}

// if necessary objects exists link in the style sheet and call the init function onload
if ( dw_scrollObj.isSupported() ) {
    dw_writeStyleSheet('css/scroll_multi.css');
    dw_Event.add( window, 'load', init_dw_Scroll);
}

