// JavaScript Document
function BlurLinks(){
        lnks=document.getElementsByTagName('a');
        for(i=0;i<lnks.length;i++){
            lnks[i].onfocus=new Function("this.blur()");
        }
    }
window.onload=BlurLinks;

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function an1(nr){
	for(i=1;i<=6;i++){
			if(i != nr){
			document.getElementById('bild'+i).style.display = 'none';
			}
			else{
			document.getElementById('bild'+nr).style.display = 'block';
		}
	}
}
function an2(nr){
	for(i=7;i<=12;i++){
			if(i != nr){
			document.getElementById('bild'+i).style.display = 'none';
			}
			else{
			document.getElementById('bild'+nr).style.display = 'block';
		}
	}
}

function an3(nr){
	for(i=13;i<=18;i++){
			if(i != nr){
			document.getElementById('bild'+i).style.display = 'none';
			}
			else{
			document.getElementById('bild'+nr).style.display = 'block';
		}
	}
}

function an4(nr){
	for(i=19;i<=24;i++){
			if(i != nr){
			document.getElementById('bild'+i).style.display = 'none';
			}
			else{
			document.getElementById('bild'+nr).style.display = 'block';
		}
	}
}

function an5(nr){
	for(i=25;i<=30;i++){
			if(i != nr){
			document.getElementById('bild'+i).style.display = 'none';
			}
			else{
			document.getElementById('bild'+nr).style.display = 'block';
		}
	}
}

function FuF_openWin(url,fensterName,breite,hoehe,left,top,zentriert,funktion) { 
  var neueFensterBreite=((screen.width-breite)/2);
  // wenn zentriert==1 dann zentrierung des neuen Fensters horizontal und vertikal
  if(zentriert==1){
 	 left=neueFensterBreite;
	 top=(screen.height-hoehe)/2;
  }
  // wenn zentriert==2 dann zentrierung des neuen Fensters nur horizontal und vertikaler Abstand ist abhängig von top
  if(zentriert==2){
	  left=neueFensterBreite;
  }
  // funktion kann sein z.B. menubar=yes, toolbar=yes, location=yes, status=yes, scrollbars=yes, resizable=yes, 
  //Aufruf z.B. mit Scrollbars
  //onClick="FuF_openWin('seite.php?var=1','bildvorschau','500','310','0','0','1','scrollbars=yes,width=500,height=310');return document.FuF_returnValue"
  //Aufruf z.B. für horizontal und vertikal zentriert
  //onClick="FuF_openWin('seite.php?var=1','bildvorschau','500','310','0','0','1','width=500,height=310');return document.FuF_returnValue"
  //Aufruf für Fullscreen
  // onClick="FuF_openWin('seite.php?var=1','bildvorschau','0','0','0','0','0','fullscreen=1');return document.FuF_returnValue"
	funktion+=',top='+top+',left='+left;
	FuF_Win = window.open(url,fensterName,funktion);
	FuF_Win.focus();
	document.FuF_returnValue=false;
}

//-->
