	text=new Array();
	title=new Array();

	title[1]="";
	text[1]="<b>Tastatursteuerung</b><br><br>(H) = Home<br>(Ü) = Über uns<br>(L) = Leistungen<br>(P) = Portfolio: (W)eb, (F)ilm, (S)ound, (T)echnik<br>(K) = Kontakt<br>(I) = Impressum<br>(D) = Disclaimer<br>(O) = Optionen<br><br>Zusätzlich können alle Verlinkungen gut sichtbar mit der TAB-Taste erreicht werden.";
	       
	title[2]="Filmauswahl";
	text[2]="<b></b><br><br>";
	
	title[3]="Filmbereich";
	text[3]="<b></b><br><br>";
	
	title[4]="Beispiellink";
	text[4]="<b></b><br><br>";
	
	title[5]="Streamingverfahren";
	text[5]="<b></b><br><br>";

	title[6]="Authoring";
	text[6]="<b></b><br><br>";


	var tableWidth = 270;
	var table_bgcolor = '#E0E9EC';
	var y = 0;
	var x = 0;
	var showit = 0;
	

	var NS4 = (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
	var NS6 = (NS4 && document.getElementById) ? 1 : 0;
	if (NS6)
		NS4 = 0;
	var IE = (document.all) ? 1 : 0;
	var IE4 = (document.all) ? 1 : 0;
	var IE5 = (IE4 && navigator.appVersion.indexOf("5.") >= 0) ? 1 : 0;
	if ( (NS4) || (IE) || (NS6) ) {
		if (NS4) over = document.popDiv
		if (IE) over = popDiv.style
		if (NS6) over = document.getElementById('popDiv')
		document.onmousemove = mouseMove
		if (NS4) document.captureEvents(Event.MOUSEMOVE)
	}
	
	function wtl(txt) {
		show(over)
		if (NS6){
			
			var layer=over
			var rng = document.createRange();
			rng.setStartBefore(layer);
			newContent = rng.createContextualFragment(txt);
			while( layer.hasChildNodes() )
			layer.removeChild( layer.lastChild );
			layer.appendChild(newContent);
		}
		if (NS4) {

			var lll = document.popDiv.document
			lll.write(txt)
			lll.close()
		} else {

			if (IE) document.all["popDiv"].innerHTML = txt
		}
	}
	
	function show(obj) {
		if (NS4) obj.visibility = "show"
		else if (IE) obj.visibility = "visible"
		else if (NS6) obj.style.visibility = "visible"
	}

	function hide(obj) {
		if (NS4) obj.visibility = "hide"
		else if (IE) obj.visibility = "hidden"
		else if (NS6) obj.style.visibility = "hidden"
	}

	function moveTo(obj,lx,ly) {
		if (NS6) {
			obj.style.left = lx+"px";
			obj.style.top = ly+"px";
			return false;
		} else {
			obj.left = lx
			obj.top = ly
		}
	}

	function hideit() {
		if ( (NS4) || (IE) || (NS6) ) {
			showit = 0;
			hide(over);
		}
	}

	function rpopi(text, title) {
		txt = "<TABLE style='border: solid 2px #9BAEBA; border-collapse:separate;' WIDTH="+tableWidth+" BORDER=0 CELLPADDING=4 CELLSPACING=4 BGCOLOR="+table_bgcolor+"><TR><TD class=\"HelpPopup\"><Font class=\"normtxtlgrey_sm\">"+text+"<SPAN></TD></TR></TABLE>";
		wtl(txt);
		display_it();
	}

	function popi(i,xPos,yPos) {
		
		if(IE){
			yPos = yPos + 550;
			xPos = xPos + 170;
		}
		
		xx = xPos; //fenster-abstand zur maus horizontal
		yy = yPos; //fenster-abstand zur maus vertikal
		

		
		rpopi(text[i],title[i]);
    }


	function display_it() {
		if ( (NS4) || (IE) || (NS6) ) {

			if (showit == 0)         {
    			moveTo(over,x+xx,y+yy);
    			show(over);
    			showit = 1;
			}
		}
	}

	function mouseMove(e) {
		if (NS4 || NS6) {x=e.pageX; y=e.pageY;}
		if (IE4) {x=event.x; y=event.y;}
		if (IE5) {x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;}
		if (showit) {
			moveTo(over,x+xx,y+yy);
		}
	}