var nTickerLength=0;
var nTickerWidth=468;
var nTickerHeight=18;
var nPixel=1;
var nDelay=13;
var strTicker='<font class="Ticker">';
 
// Ticker functions
function initTicker() {
 document.ticker1.document.ticker2.document.write('<table width=582 vspace=0 haspace=0 border=0><tr><td nowrap><font class="Ticker" color=white><b>'+strTicker+'</b></font></td></tr></table>');
 document.ticker1.document.ticker2.document.close();
 
 nDelay -= 10; // for NN4
 //document.ticker1.document.ticker2.left=nTickerWidth;
 nTickerLength = document.ticker1.document.ticker2.clip.right - document.ticker1.document.ticker2.clip.left;
 //setInterval('scrollIt()',nDelay);
 scrollIt();
}
function scrollIt() {
 clearTimeout();
 if (document.ticker1.document.ticker2.left>=nTickerLength*(-1)) {
 //if (document.ticker1.document.ticker2.left>=nTickerWidth*(-1)) {
  document.ticker1.document.ticker2.left-=nPixel;
 } else {
  document.ticker1.document.ticker2.left=nTickerWidth;
  //scrollIt();
 }
 setTimeout('scrollIt()',nDelay);
}

