	function startTime()
	{
	var today=new Date();
	var h=today.getHours();
	var m=today.getMinutes();
	var s=today.getSeconds();
	// add a zero in front of numbers<10
	m=checkTime(m);
	s=checkTime(s);
	document.getElementById('txt').innerHTML=h+":"+m+":"+s;
	t=setTimeout('startTime()',500);
	}
	
	function checkTime(i)
	{
	if (i<10)
	  {
	  i="0" + i;
	  }
	return i;
	}
	
	function lastMod() {
		var x = new Date (document.lastModified);
		document.getElementById('LastM').innerHTML="Last modified: "+x;
	}
	function showMenue(txt)
	{
		document.getElementById('idxA').innerHTML=txt;
	}
	function SetStyle()
	{
		document.getElementById("id0").style.color="red";
	}
