// JScript source code
var timer = null
var interval 
var lang = [ "EN", "NL", "FR" ]

	function stopclock()
	{
		clearTimeout(timer)
	}
	
	function initialise()
	{
		startclock()	
	}
	
	function setscreen()
	{
		var width = screen.width
		var height = screen.height
		window.resizeTo(width,height);
		window.moveTo(0,0);
	
	}

	function startclock()
	{
		// Set the clock only when we have internet explorer
		if ( navigator.appCodeName.indexOf("Mozilla") != -1 )
		{
			var time = new Date()
			var hours = time.getHours()
			var minutes = time.getMinutes()
			minutes=((minutes < 10) ? "0" : "") + minutes
			var seconds = time.getSeconds()
			seconds=((seconds < 10) ? "0" : "") + seconds
			var time = hours + ":" + minutes + ":" + seconds + " H "
			clock.className = "clock"
			clock.innerText = time ;
		}
		timer = setTimeout("startclock()",1000)
	}	
	
	function printpage()
	{
		window.print()
	}

