// JavaScript Document
function stopScroll()
    {
        if (document.all)
        {
            document.all.recent_topics.stop();
        }
        else if (document.getElementById)
        {
            document.getElementById('recent_topics').stop();
        }
    }
    function startScroll()
    {
        if (document.all)
        {
            document.all.recent_topics.start();
        }
        else if (document.getElementById)
        {
            document.getElementById('recent_topics').start();
        }
    }