
<!--
function UhrAnzeigen()
{
	var uhrzeit;
	var Titel = "Datum & Uhrzeit in der Titelleiste";
	var Datum = new (Date);
	var Tag = Datum.getDate();
	var Wochentag = Datum.getDay();
	var Monat = Datum.getMonth();
	var Jahr = Datum.getFullYear();
	var Tagname = new Array("So", "Mo", "Di", "Mi", "Do", "Fr", "Sa");
	var Monatname = new Array("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12");
	var Stunde = Datum.getHours();
	var Minute = Datum.getMinutes();
	var Sekunde = Datum.getSeconds();
	if(Sekunde<10)
	{
		Sekunde = "0" + Sekunde;
	}
	if(Minute<10)
	{
		Minute = "0" + Minute;
	}
	if(Stunde<10)
	{
		Stunde = "0" + Stunde;
	}
	if(Tag<10)
	{
		Tag = "0" + Tag;
	}
	uhrzeit = +Tag+"."+Monatname[Monat]+"."+Jahr+" - "+Stunde+":"+Minute+":"+Sekunde;
	setTimeout("UhrAnzeigen()", 1000);
	
	document.getElementById("uhr").value = uhrzeit;
}

function popupWindow(url, name, links, oben, hoehe, breite, scrollbar) {
	if(!links)  links = 10;
	if(!oben) 	 oben = 10;
	if(!hoehe) 	hoehe = 400;
	if(!breite)	breite = 400;
	if(!scrollbar)	scrollbar = 'yes';
		
	popup = window.open(url , name , "height="+hoehe+",width="+breite+" ,status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = "+scrollbar+",fullscreen = no,top ="+oben+",left ="+links);
	popup.focus();
}

function nav_show_hide(layer_show, layer_hide) {
	var obj_show = document.getElementById(layer_show);
	var obj_hide = document.getElementById(layer_hide);
	
    obj_show.style.visibility = "visible";
    obj_hide.style.visibility = "hidden";
}
function nav_show_start(layer_show) {
	if (layer_show != 'show_') {
		var obj_show = document.getElementById(layer_show);
  		obj_show.style.visibility = "visible";
	}
}

function video_link(msg, url) {
  	if(confirm(msg)) location.replace(url);
}
-->
