
hlp_referenz_aktuell = "";
MouseX = 0;
MouseY = 0;

if( NS4 ) {
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove=handleMove;
}



function hlp_anzeigen(hlp_titel, hlp_text, hlp_icon, referenz_id) {
	if( referenz_id != hlp_referenz_aktuell ) {
		if( DOM ) {
			obj_hlp_titel = document.getElementById("hlp_titel");
			obj_hlp_titel.firstChild.nodeValue = hlp_titel;
			obj_hlp_text = document.getElementById("hlp_text");
			obj_hlp_text.firstChild.nodeValue = hlp_text;
			obj_hlp_fenster = document.getElementById("hlp_fenster");
		}
		else if( NS4 ) {
			document["hlp_fenster"].document.clear();
			document["hlp_fenster"].document.open();
			document["hlp_fenster"].document.writeln('<DIV style="border-color:red; border-width:2px;"><TABLE border="0" cellpadding="2" cellspacing="0" width="100%"><TR><TD bgcolor="#003399"><B style="color: #E0FAFF;"><FONT face="Arial" size="2"><DIV id="hlp_titel" style="font-weight: 700; color: #E0FAFF">'+hlp_titel+'</DIV></FONT></B></TD><TD bgcolor="#003399"> </TD></TR>');
			document["hlp_fenster"].document.writeln('<TR><TD colspan="2" bgcolor="#FFFFFF"><SMALL><FONT face="Arial" size="1"><DIV id="hlp_text">'+hlp_text+'</DIV></FONT></SMALL></TD></TR></TABLE></DIV>');
			document["hlp_fenster"].document.close();		
		}
		else if( IE ) {
			document.all["hlp_titel"].innerText = hlp_titel;
		}
		if( NS4 ) {
			pos_x = MouseX;
			pos_y = MouseY;
		}
		else {
			pos_x = getOffsetLeft(referenz_id);
			pos_y = getOffsetTop(referenz_id)+30;
		}
		if( pos_x > 600 ) {
			pos_x = pos_x - 190;
		}
		//alert("Pos: "+pos_x+", "+pos_y);
		setLeft("hlp_fenster", pos_x);
		setTop("hlp_fenster", pos_y);
		setVisibility("hlp_fenster", true);
		hlp_referenz_aktuell = referenz_id;
	}
}


function handleMove(ev) {
	if( NS4 ) {
	 	Event = ev;
	 	MouseX = Event.pageX;
	 	MouseY = Event.pageY;
	}
}

function hlp_verstecken() {
	setVisibility("hlp_fenster", false);
	hlp_referenz_aktuell = "";
}


document.writeln('<LAYER name="hlp_fenster" width="180" visibility="hide" left=0" top="0"><DIV id="hlp_fenster" style="visibility:hidden; position:absolute; border-style: solid; border-color:#F58120; border-width: 1px; background-color: white; width: 200px; z-index:10" id="hlp_fenster" width="200" visibility="hide" pageX=0" pageY="0">');
document.writeln('<TABLE border="0" cellpadding="2" cellspacing="0" width="100%"><TR><TD bgcolor="#23A3DC"><DIV id="hlp_titel" style="font-weight: 700; color: white">Hilfe</DIV></TD></TR>');
document.writeln('<TR><TD bgcolor="#FFFFFF"><SMALL class="mini"><DIV id="hlp_text">Hilfe</DIV></SMALL></TD></TR></TABLE></DIV></LAYER>');
