var max=0;
function textlist() {
  max=textlist.arguments.length;
  for (i=0; i<max; i++)
  this[i]=textlist.arguments[i];
}
tl=new textlist (
   "Olympia #591  -  Olympic Games Moscow 1980",
   "WAC 5 Band  -  Worked All Continents  on 5 Bands",
   "DUF III #3777  -  Diplom d' Honneur de l Union Francaise",
   "R150S CW #601  -  worked 150 countries",
   "WWA  -  Worked Warsaw Award",
   "Bulgaria 1300 III #546  -  1300 th Anniversary of Bulgarian State",
   "MDXA #96  -  Mendoza DX Award",
   "D-DX-C #612  -  Dutch DX Certificat",
   "NRB #542  -  Peoples Republic of Bulgaria Award",
   "WAC-YL #1252  -  Worked YL's in all Continents",
   "OK SSB Award #1688  -  worked OK Stations in SSB mode",
   "5 Band LZ #21  -  worked LZ1 and LZ2 on 5 bands",
   "Black Sea Award #44  -  worked 60 stations in all Black Sea Countries",
   "World Cup Award  -  Football World Cup 1982 in Madrid",
   "W-28Z-ITU I #113  -  worked 20 countries in ITU-Zone 28",
   "WAMCC 3,5MHz #238  -  Worked American Capital Cities on 3,5MHz",
   "LEA #464  -  Lake Erie Award",
   "DP #102  -  worked 5 ZP Stations",
   "Y2 DX Award I #92  -  worked Y2-DXer's",
   "Y2CA I #120  -  worked members of Y2 Certificate Hunters Club",
   "WAY2 II #603  -  worked all Y2 districts",
   "TCCA #79  -  worked 18 countries touched by tropics of Cancer and Capricorn",
   "R6K 3,6MHz SSB #55  -  worked stations in all continents and soviet territories",
   "Balaton #796  -  worked stations of the counties around Lake Balaton",
   "Sladami Lenina #407  -  Muzeum Lenina Warszawa",
   "Noviomagum #91  -  worked stations of Nijmegen ARC",
   "AZ11PX #382  -  worked 20 prefixes in zone 11",
   "LZ40 #128  -  40 years LZ",
   "DSA #212  -  worked 20 countries and 6 ITU zones in South America",
   "R10R #4124  -  worked soviet prefix numbers 1 ... 0",
   "SWK #4431  -  worked stations of Japanese Sky Wirless Club",
   "Y30 Award #663  -  30 years HAM Radio in GDR",
   "WAE I #465  -  worked all Europe",
   "PA #157  -  prefix alphabet",
   "35th anniversary of LOK # 223",
   "WAP #900  -  worked all Pacific",
   "HRD  hand rummy CW #957  -  Hungarian Rummy  Diploma",
   "5BDXCC #1440  -  5 Band DXCC",
   "RAEM #1720  -  worked soviet polar, arctic and antarctic stations",
   "WFRC  -  worked 16 members of the Frankford Radio Club",
   "USA CA 500 SSB #2003  -  USA County Award, worked 500 USA Counties in SSB",
   "HCS #480  -  Hungarian Castle Series",
   "The Washington Totem Award #549  -  worked 26 Washington stationes including 16 WWDX Club members",
   "LBCC #46  -  Low Band Century Certificate, worked 150 countries on 80m");

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();
}
