var max=0;

function textlist() {
  max=textlist.arguments.length;
  
  for (i=0; i<max; i++)
  this[i]=textlist.arguments[i];
}

var x = 0; pos = 0;

function textticker() {
  document.tickform.tickfield.value = tl[x].substring(0, pos);
 
  if(pos++ == l) {
    pos = 0; 
    setTimeout("textticker()", 2000); 
  
    if(++x == max) x = 0; 
      l = tl[x].length;
  } else
    setTimeout("textticker()", 50);
}
if (document.all) {
  docObj = "document.all."
  styleObj = ".style"
}
else {
  docObj = "document."
  styleObj = ""
}

function popUp(evt,currElem,top,lft) {
  popUpWin = eval(docObj + currElem + styleObj)
  if (document.all) {
    popUpWin.top = top
    popUpWin.left = lft
  }
  else {
    popUpWin.top = top - 8
    popUpWin.left = lft
  }
  
  popUpWin.visibility = "visible"
  window.status = ""
}

function popDown(currElem) {
  popUpWin = eval(docObj + currElem + styleObj)
  popUpWin.visibility = "hidden"
}

