/**************************************************************************/
/* ###################################################################### */
/* Tooltip Anfang */
/* ###################################################################### */
/**************************************************************************/

/**************************************************************************/
function TX_getScrollPos() {
/**************************************************************************/
   if (document.body.scrollTop != undefined && navigator.appName.indexOf("Explorer") != -1 ) {
      var res = (document.compatMode != "CSS1Compat") ? document.body : document.documentElement;
      return {x : res.scrollLeft, y : res.scrollTop};
   }
   else {
      return {x : window.pageXOffset, y : window.pageYOffset};
   }

}

/**************************************************************************/
function TX_showToolTip(e, text) {
/**************************************************************************/

	var scr = TX_getScrollPos();
	var cordX = e.clientX + scr.x;
	var cordY = e.clientY + scr.y;
	var correctorY = e.clientY + document.getElementById("tooltip").offsetHeight + 20 - window.innerHeight;

	document.getElementById("tooltip").style.visibility = "hidden";
	document.getElementById("tooltip").innerHTML = text;
	document.getElementById("tooltip").style.position = "absolute";
	document.getElementById("tooltip").style.left = ( cordX + 10 ) + "px";

	if ( correctorY > 0 ) {
		document.getElementById("tooltip").style.top = ( cordY - correctorY ) + "px";
	} else {
		document.getElementById("tooltip").style.top = ( cordY + 10 ) + "px";
	}

	document.getElementById("tooltip").style.visibility = "visible";
}

/**************************************************************************/
function TX_hideToolTip() {
/**************************************************************************/
	document.getElementById("tooltip").style.visibility = "hidden";
	document.getElementById("tooltip").innerHTML = "false";	
}

/**************************************************************************/
/* ###################################################################### */
/* Tooltip Ende */
/* ###################################################################### */
/**************************************************************************/

