var speed=20;

var pause=1000;

var stop=2000;



var textList=new Array();

//tekster, angiv mindst en

textList[0]="TSN Metalvarefabrik - Tlf. 5826 1499 - Fax 5826 1420";

textList[1]="Alt inden for porte, låger, hegn, rækværk og gelænder i smedejern";

textList[2]="Fremstilling af beslag og løsdele i smedejern og bøjet tråd";



var n=0;

var i=0;

var j=0;

var space=150;

if(navigator.appName=='Microsoft Internet Explorer')space=150;

if(navigator.appName=='Netscape')space=250;

if(navigator.appName=='Mozilla')space=250;



function doStatusTick(){

	i=0;

	j=0;

	if (n==textList.length) n=0;



	if (textList[n]!=null){

		text=textList[n];

		while (j++<space) {text=" "+text;}

		statusScroll();

		n++;

	}

else{

	n++;

	doStatusTick()}

}



function statusScroll(){

	window.status=text.substring(i++,text.length);

	if (i==space)

		setTimeout("statusScroll()",stop);

	else if (i==text.length){

		window.status=" ";

		setTimeout("doStatusTick()",pause);}

	else

		setTimeout("statusScroll()",speed);

}
doStatusTick()