function checkDocument() {
	// gets the current URL of the document
	curURL=document.location+'';
	// gets the list of A tags
	elems=document.getElementsByTagName('a');
	// for every A tag
	for (i=0;i<elems.length;++i) { 
		// get the href attribute
		elemLink=elems[i].href+'';
		// GE 24/9/2003
		if((elemLink.indexOf('.asp') == -1) || (elemLink.indexOf('#') != -1)) continue;
		// Ende GE 24/9/2003
		// take the extension out (so it works for all levels)
		elemLink=elemLink.substring(0,elemLink.indexOf('.asp'));
		// if href attribute is contained inside the current document
		if (curURL.toUpperCase().indexOf(elemLink.toUpperCase())!=-1) {
		//alert(elemLink);
			// Change the style of the object
			elems[i].id='aktiv';
			}
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_popupMsg(msg) { //v1.0
  alert(msg);
}

function FensterOeffnen (Adresse) {
  MeinFenster = window.open(Adresse, "Zweitfenster", "width=280,height=500,left=100,top=200");
  MeinFenster.focus();
}


