var max=0;
function textlist() {
  max=textlist.arguments.length;
  for (i=0; i<max; i++)
  this[i]=textlist.arguments[i];
}
tl=new textlist (
   "S6S #4967  -  worked six continents",
   "R6K #4102  -  worked six continents and soviet stations",
   "DUF I #6858  -  Diplom d' Honneur de l Union Francaise",
   "3,5MHz Award  -  worked 50 countries on 3,5MHz",
   "W21M #3094 -  worked 21th Meridian of Warsaw",
   "WAC 3,5MHz  -  worked all continents on 3.5MHz",
   "DDR30  -  30 years GDR",
   "DUF II #5336  -  Diplom d' Honneur de l Union Francaise",
   "101 -  worked 101 countries",
   "AMCA #76  -  worked inland countries",
   "VT #136  -  Video Ton Award",
   "Pannonia #585  -  worked transdanubian stations",
   "P75P #770  -  worked 60 ITU Zones",
   "PNB #193  -  Poland near Baltic");
   
var x=0; pos=0; t1=2000; 
var l=tl[0].length;
function textticker() {
  document.tickerform.tickerfeld.value="+++  "+tl[x].substring(0,pos)+"  +++";
  if(pos++==l) {
    pos=0;
    setTimeout("textticker()",t1);
    x++;
    if(x==max) x=0;
    l=tl[x].length;
  }else setTimeout("textticker()",10);
}
function runticker() {
  document.write('<div><div class="ticker"><form name="tickerform"><input class="ticker" type="text" name="tickerfeld" readonly onmouseover="t1=6000" onmouseout="t1=2000" title="slow" /></form></div></div>');
  textticker();
}

