window.onload=function(){
	if (top!=self) top.location.href=unescape(window.location.pathname);
	if (!document.getElementById) return;
	var r=document.getElementsByTagName('tr');
	var l=r.length;
	for (i=0;i<l;i++){if (i%2 == 0){} else {r[i].className='altrow';}}
}
function toggleContentVisibility(whichDiv){
	if (!document.getElementById(whichDiv)) return;
	document.getElementById(whichDiv).style.display = document.getElementById(whichDiv).style.display == 'block'? 'none':'block';
	document.getElementById('icon'+whichDiv).src = document.getElementById('icon'+whichDiv).src == 'http://'+window.location.host+'/fileadmin/_img/ico/ico_open-menuitem_9x9.gif'?'http://'+window.location.host+'/fileadmin/_img/ico/ico_active-menuitem_9x9.gif':'http://'+window.location.host+'/fileadmin/_img/ico/ico_open-menuitem_9x9.gif';
}
function dispDate(){
	TodaysDate=new Date();
	TodaysDay=new Array('Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag');
	TodaysMonth=new Array('01','02','03','04','05','06','07','08','09','10','11','12');
	CurrentYear=TodaysDate.getYear();
	CurrentMonth=TodaysDate.getMonth();
	CurrentDay=TodaysDate.getDate();
	month=TodaysMonth[CurrentMonth];
	TheDate =TodaysDay[TodaysDate.getDay()]+', ';
	TheDate+=CurrentDay+'.';
	TheDate+=month+'.';
	TheDate+=CurrentYear<=1900?CurrentYear+1900:CurrentYear;
	document.write(' '+TheDate);
}