if (true) { //(tickerWidth=='auto'){
  if (navigator.appName=='Netscape') {
    tickerWidth = (window.innerWidth - 40) / 8 + 3
  } 
  else {
    tickerWidth = (window.document.body.clientWidth - 40) / 8 + 3
  }
window.onresize = new Function("window.location.reload()");
}

var max=0;

max=messages.length;
var x=0; pos=0;
var l=messages[0].length;
function textticker()
{
document.tickform.tickfield.value=messages[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker()",1000);
x++;
if(x==max)
x=0;
l=messages[x].length;
} else
setTimeout("textticker()",tickerSpeed);
}




