    var t;
    var timeInterval = 180;
    var waitTime = 2000;

    function InitializeScroll() {
        t = setTimeout('Scroll()', waitTime);
    }
    
    function Scroll() {
    
        var div = document.getElementById("News_Content");
        if (div != null) {
            currentScroll = div.scrollTop
            div.scrollTop += 2;
            if (div.scrollTop == currentScroll) {
                t = setTimeout('ResetScrollAndInit()', waitTime);
            } else {
                t = setTimeout('Scroll()', timeInterval);    
            }
        }
    }
    
    function ResetScrollAndInit() {
        var div = document.getElementById("News_Content");
        if (div != null) {
            div.scrollTop = 0;
            t = setTimeout('Scroll()', waitTime);
        }
    }
    window.focus = InitializeScroll(); 

	  