<!--

	var isIE=(navigator.appName == 'Microsoft Internet Explorer') ? true : false;
	//window.captureEvents(Event.KEYPRESS); // nur fuer alte NS-Browser
	window.onkeydown = Ausgabe;

	
	function Ausgabe(evt)
	{
		if (trigger) {
			kc = (isIE) ? window.event.keyCode : evt.which;
			if ((kc >= 65) && (kc <= 90)) {
				if(event.keyCode==65)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=A";	}
				if(event.keyCode==66)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=B";	}
				if(event.keyCode==67)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=C";	}
				if(event.keyCode==68)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=D";	}
				if(event.keyCode==69)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=E";	}
				if(event.keyCode==70)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=F";	}
				if(event.keyCode==71)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=G";	}
				if(event.keyCode==72)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=H";	}
				if(event.keyCode==73)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=I";	}
				if(event.keyCode==74)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=J";	}
				if(event.keyCode==75)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=K";	}
				if(event.keyCode==76)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=L";	}
				if(event.keyCode==77)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=M";	}
				if(event.keyCode==78)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=N";	}
				if(event.keyCode==79)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=O";	}
				if(event.keyCode==80)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=P";	}
				if(event.keyCode==81)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=Q";	}
				if(event.keyCode==82)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=R";	}
				if(event.keyCode==83)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=S";	}
				if(event.keyCode==84)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=T";	}
				if(event.keyCode==85)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=U";	}
				if(event.keyCode==86)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=V";	}
				if(event.keyCode==87)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=W";	}
				if(event.keyCode==88)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=X";	}
				if(event.keyCode==89)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=Y";	}
				if(event.keyCode==90)
				{ window.location.href="objekt_uebersicht_alpha.php?letter=Z";	}
			}
		}
	}
	
	var trigger=true;
	
	function changeTrigger(bol){
		trigger=bol;
	}
	


	function Init(){
		var inPFs=document.getElementsByTagName("input").length;
		for (i=0; i<inPFs; i++) {
			iPF=document.getElementsByTagName("input")[i];
			
			iPF.onfocus=function(){
				changeTrigger(false);
			}
			iPF.onblur=function(){
				changeTrigger(true);
			}
		}
		document.body.onkeydown=Ausgabe;
	}
	
//-->
