
////////////////////////////////////////////////////////////////////////////////
/// Tooltip auf Startseite Fahrer-Birthday//////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
var ie = document.all?1:0;
var w3c = document.getElementById?1:0;
var tipWidth = "";  // Tooltip Breite
var borderCol = "blue";  // Tooltip Rahmenfarbe
var info, x, y;
document.onmousemove = posTooltip; 

/* document.onclick = hideInfo; */


function posTooltip(e) {
	

 if(ie) {

  info = document.all.descr.style;
  x = event.x + document.body.scrollLeft;
  y = event.y + document.body.scrollTop;
 }
 else {
  
  info = document.getElementById("descr").style;
  x = e.clientX + window.pageXOffset;
  y = e.clientY + window.pageYOffset;
 }
 info.left = (x + -145) + "px";
 info.top = (y + -45)+ "px";
}


function showInfo(text, col) {
	
 var content='<table width="'+tipWidth+'" cellpadding="0" cellspacing="0">';
 content+='<tr><td align="center" class="infotext">';
 content+= text + '<\/td><\/tr><\/table>';

 if(ie) {
  descr.innerHTML = content;
 }

 else if(w3c) {
  document.getElementById("descr").innerHTML = content;
 }
 info.visibility = "visible";
}


function hideInfo() {

 document.getElementById("descr").innerHTML = "";
 info.width = "0px";
 info.height = "0px";
 info.visibility = "hidden"; 
}