<!--
function notification() {
	window.onerror=null;
	colors = window.screen.colorDepth;
	document.form.colors.value = Math.pow (2, colors);

	if (navigator.language == "de")
		document.form.language.value = "deutsch";
	else
		document.form.language.value = "englisch";
		
	document.form.navigator.value = navigator.appName;
	document.form.version.value = navigator.appVersion;
	document.form.colordepth.value = window.screen.colorDepth;
	document.form.width.value = window.screen.width;
	document.form.height.value = window.screen.height;
	document.form.maxwidth.value = window.screen.availWidth;
	document.form.maxheight.value = window.screen.availHeight;
	document.form.codename.value = navigator.appCodeName;
	document.form.platform.value = navigator.platform;
	if (navigator.javaEnabled() < 1) document.form.java.value="No";
	if (navigator.javaEnabled() == 1) document.form.java.value="Yes";
	if (document.referrer != '') document.form.referrer.value = document.referrer;

	var todayDate = new Date();
	document.form.datum.value = todayDate.toLocaleString();

	document.form.submit();
}	
	
//	aktuelle zeit
	var todayDate = new Date();
	strTime = todayDate.toLocaleString();

// -->