function lastmodified(){
	var Datum=new Date(document.lastModified);
	var update = "Aktualisiert am " + Datum.getDate() + "." + (Datum.getMonth()+1) + "." + Datum.getFullYear();
	document.write(update);

	/* delete counter & Preload images */
	Str="x" + location
	if (Str.match("top")){
		Tag=document.getElementsByTagName("i")[0];
		Tag.innerHTML="";
		}
}
/* -----globale Variablen in allen Funktionen verwendet------ */
var ar_= new Array()
var i=0	//Zähler für Array ar_()
/* ende-----globale Variablen------ */

/* -----schaltet wechselweise ID1 sichtbar : ID2 unsichtbar -------*/
function showInfo(ID1, ID2){
	if (!document.getElementById) return;
	with (document.getElementById(ID1).style) {
		display=="none"? display="" : display="none";
	}
	with (document.getElementById(ID2).style) {
		display=="none"? display="" : display="none";
	}
}

/* Navigtationsmenü */
function formHandler(Menu){
	var Seite = document.getElementById(Menu).options[document.getElementById(Menu).selectedIndex].value;
	if(Seite.indexOf(".htm")!=-1) {
		window.location.href=Seite;
	}
}

function SeiteZeigen(go){
var PageNum=0; //Zähler für Seite
var Seite= "x" + location;
for (var p=0; p<=PageSet1.length-1; p++){
	var str=PageSet1[p];
	if (Seite.match(str)){
		PageNum=p;
	}
}
	if (PageNum==PageSet1.length-1 && go>0) PageNum=-1;
	if (PageNum==0 && go<0)PageNum=PageSet1.length;	
//	window.location.href=PageSet1[PageNum + go] + "#Anchor-nix" ;
	window.location.href=PageSet1[PageNum + go];
}

function ChangePic(name,pic, timeout){
	var String='document.getElementById("'+name+'").src="'+pic+'"';
	setTimeout(String,timeout);
}
