function checkframe(){
if(window.top == window) { 
top.location.href='index.htm'; 
}}


function getTime()
	{
		dateTime=new Date();
		
		hour=dateTime.getHours();
		min=dateTime.getMinutes();
		if( min<10) 
			min="0"+min;
		sec=dateTime.getSeconds();

		if( sec<10)
			sec="0"+sec;

		mon = new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
		mon=mon[dateTime.getMonth()];
		day=dateTime.getDate();

		dateTime=""+day+". "+mon+" "+hour+":"+min+":"+sec;
		document.all.timer.innerText=dateTime;
		document.getElementById("timer").firstChild.nodeValue=dateTime;
		setTimeout("getTime()", 1000);
	}
