if ( document.getElementById && document.getElementsByTagName ) {
    //dw_writeStyleSheet(\'css/scroll.css\');
    addLoadEvent(init_dw_Scroll);
}

function init_dw_Scroll() {
    // Initialize scroll area
    // arguments: id of outer div, id of content div
    var wndo = new dw_scrollObj('list_news', 'lyr_news');

    // Initialize scrollbar
    // id of dragbar, id of track,
    // axis (v for vertical scrolling, \'h\' for horizontal)
    // horizontal offset of dragbar in track, vertical offset
    // size dragBar according to amount of content? (boolean)
    wndo.setUpScrollbar('dragBar_news', 'track_news', 'v', 1, 1, true);

    // Initialize scroll links
    // id of element within which to locate scroll controls
    wndo.setUpScrollControls('scrollbar_news');
}