var max=0;
function textlist() {
  max=textlist.arguments.length;
  for (i=0; i<max; i++)
  this[i]=textlist.arguments[i];
}
tl=new textlist (
	"Slovenska Award #1908  -  worked 20 slovakian counties",
	"PACC -  worked 100 Netherland stations",
	"750th Anniversary of Berlin Award ",
	"Alaska DX Certificate #290  -  worked different judical districts",
	"The DX Familie Awards ...",
	"DXF-D-Award #114  -  worked 5 members of DXF",
	"DXF-X-Award # 267  -  spell 5 times with country prefixes D X F",
	"DXF-F-Award #44  -  worked 5 DX-peditions sponsored by DXF",
	"50th Anniversario della Morte di Guglielmo Marconi Award #686",
	"FWRC Award #99  -  worked 5 members of Fort Wayne ARC - Fort Wayne is a partner town of Gera.");

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();
}


