var max=0;
function textlist() {
  max=textlist.arguments.length;
  for (i=0; i<max; i++)
  this[i]=textlist.arguments[i];
}
tl=new textlist (
   "DMKK I CW #259  -  worked 100 DM KreisKenner",
   "WADM V 80m CW #359  -   worked 10 DM districts",
   "DMCA V #251  -   worked 100 members of DM CHC Chapter 23",
   "SPDXCA #1190  -   worked 15 members of SP DX Club",
   "OK 100 #3018  -  worked 100 OK stations",
   "Polska #763  -  worked all SP districts",
   "RRA IV #227 -  River Rhine Award",
   "WHD #2573  -  Worked Hungarian Districts",
   "WADM Festival",
   "NCA #990  -  Nicolaus Copernikus Award",
   "BSA II #226  -  Baltic Sea Award",
   "NSA II #393  -  Northern Sea Award",
   "BPA III #257  -  worked 10 districts of Budapest",
   "BELARUS #1049  -  worked Belorussian districts",
   "YU #1422  -  worked 15 YU stations",
   "SOP  -  Sea Of Peace, worked countries around the Baltic Sea in month July each year",
   "W100U #4154  -  worked 100 U stations",
   "ZMT #3128  -  worked 39 callsign areas of socialist countries",
   "W-SP0 #332  -  worked 3 SP0 (experimental) stations",
   "HA25HG #360  -  25 years of HA Radioamateur Society MRASZ",
   "DMDXA #1696  -  worked 10 members of DM DX Club",
   "RDS #272  -  Rabotal Democracni Strani",
   "JUBILAUM #1284  -  100. birthday of Lenin",
   "AC15Z #2460  -  worked all countries of the 15th Zone",
   "R100O #2448  -  worked 100 Oblasti",
   "Benelux #1379  -  Benelux Award",
   "ZBA #596  -  Ziemia Bydgoska");
   
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();
}
