		function UpdateTheDate() 
		{
			var hours = FFWaldenbuch_date.getHours();
			var minutes = FFWaldenbuch_date.getMinutes();
			var seconds = FFWaldenbuch_date.getSeconds();
			var ampm = '';
			var d = FFWaldenbuch_date.getDate();
			var m = FFWaldenbuch_date.getMonth();
			var y = FFWaldenbuch_date.getFullYear();
			var cdate;		
			FFWaldenbuch_date.setSeconds( seconds+1 );		
			if (hours < 10) hours = '0' + hours;
			if (minutes < 10) minutes = '0' + minutes;
			if (seconds < 10) seconds = '0' + seconds;
			if(String(d).length == 1)
			{
			d = "0" + d
			}		
			
			//cdate = hours + ":" + minutes + ":" + seconds + "h";
			cdate = tagName + ", " +d+". "+monat[m]+" "+y+" - "+hours + ":" + minutes + ":" + seconds + "&nbsp;&nbsp;";
			

			document.getElementById("clockInHeading").innerHTML=cdate;
			if (document.all)
				{
				document.all.clockInHeading.innerHTML=cdate;
				}
			else if (document.getElementById)
				{
				
				}
			else
				{
				document.write(cdate)
				}
		}			
		UpdateTheDate();		
		if (!document.all && !document.getElementById)
			{
			UpdateTheDate();
			}			
		function showTime()
		{
			if (document.all||document.getElementById)
				{
				setInterval("UpdateTheDate()",1000);
				}
		}			
		showTime();
