// vars to enable the ticker.
var scroll = true;
var ScrollSpeed = 150;
var ScrollChars = 1;
var msg = ' Ghostfox has been adopted by new developers. Please bear with us as we learn the product better! Version 0.2.2.1 has been released. This is a port to the .Net Framework 2.0.';

// keeps the ticker scrolling
function ScrollMarquee()
{
    window.setTimeout('ScrollMarquee()',ScrollSpeed);

    if (scroll == true)
    {
msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
document.getElementById('ticker').value = msg;
    }
}
