<!--

// lichtkrant

var timerID = null;
var timerRunning = false;
var id,pause=0,position=0;

function ticker()
{
  var i,k;
  var msg1= "";//"Nu verkrijgbaar Amerlock 400.";
  var msg2="";
  
  var msg = "Aquacoating op BOOT Holland 2011 groot succes. Verschillende nieuwe klanten doen zaken met aquacoating.";
 
  k=(75/msg.length)+1;
  for(i=0;i<=k;i++) msg+=" "+msg;
    document.getElementById('lichtkrant').innerHTML=
       msg.substring(position,position+75);
    if(position++==38) position=0;
    id=setTimeout("ticker()",1000/3);
}

function action() {
 if(!pause) {
   clearTimeout(id);
   pause=1; 
 } else {
   ticker();
   pause=0; 
 }
}

function Browser() {
		this.isIE    = false;
		this.isNS    = false;
		this.version = null;

		var ua = navigator.userAgent;
		var s = "MSIE";
		var i;
		if ((i = ua.indexOf(s)) >= 0) {
			this.isIE = true;
			this.version = parseFloat(ua.substr(i + s.length));
			return;
		}

		s = "Netscape6/";
		if ((i = ua.indexOf(s)) >= 0) {
			this.isNS = true;
			this.version = parseFloat(ua.substr(i + s.length));
			return;
		}

		// Treat any other "Gecko" browser as NS 6.1.
		s = "Gecko";
		if ((i = ua.indexOf(s)) >= 0) {
			this.isNS = true;
			this.version = 6.1;
			return;
		}
	}
	
	




//-->

