<!--
// LIBopenWindow start (dr-010223)
function LIBopenWindow( url, winname, width, height, left, top, switches){
	function LIBopenWindowUtility( attribute ){ return ","+attribute+"="+(switches.indexOf(attribute)>-1?"yes":"no") }
	var attributes = (width?",width="+width:"")+ (height?",height="+height:"")+ (left?",left="+left:"")+ (top?",top="+top:"")+		
		LIBopenWindowUtility("toolbar")+LIBopenWindowUtility("directories")+LIBopenWindowUtility("status")+LIBopenWindowUtility("scrollbars")+
		LIBopenWindowUtility("resizable")+LIBopenWindowUtility("menubar")+LIBopenWindowUtility("location")
	return window.open( url, (winname?winname:"_blank"), attributes);
}
/* Sample
	var schalter="toolbar, directories, status, scrollbars, resizable, menubar, location"
	LIBopenWindow("http://www.google.de",null,null,null,null,null,schalter)
*/
// LIBopenWindow end

// setzt, wenn nicht vorhanden - alle texte
function setAllLinkText(){
	if ( !document || !document.getElementsByTagName ) return
	var tags = document.getElementsByTagName("a")
	for(var i=0; i<tags.length; i++ ){
		var e = tags[i];
		e.MouseOverText = e.innerHTML.replace(/<[^>]*>/,"") // eingeschlossene tags entfernen
		if ( !e.onmouseover ) e.onmouseover = function(){ window.status=this.MouseOverText; return true; }
		if ( !e.onmouseout ) e.onmouseout =   function(){ window.status = ''; return true; }
	}
}
window.onload=setAllLinkText
//-->

