   function scrollingMarquee(thisWidth)
    {
     document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+thisWidth+'" height="16" id="ticker" style="z-index: 50">');
     document.write(' <param name="allowScriptAccess" value="sameDomain" />');
     document.write(' <param name="movie" value="/marquee.swf?xml=/marquee.xml" />');
     document.write(' <param name="quality" value="high" />');
     document.write(' <param name="bgcolor" value="#385c7e" />');
     document.write(' <embed bgcolor="#385c7e" src="/marquee.swf?xml=/marquee.xml" quality="high" width="'+thisWidth+'" height="16" name="ticker01_final" style="margin: 0px; padding: 0px;" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" style="z-index: 50" />');
     document.write('</object>');
    }
   function reveal(which)
    {
     if (document.getElementById(which).style.display != 'block') 
       document.getElementById(which).style.display='block';
     else
       document.getElementById(which).style.display='none';
    }
