// Example:
// onMouseOver="toolTip('tool tip text here')";
// onMouseOut="toolTip()";
// -or-
// onMouseOver="toolTip('more good stuff', '#FFFF00', 'orange')";
// onMouseOut="toolTip()"; 
/*
MOVE this to the <body>:

*/
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;
offsetX = -160;
offsetY = 10;
var toolTipSTYLE="";
function initToolTips()
{
	var tDiv;
	tDiv=document.createElement("<div id=\"toolTipLayer\" style=\"position:absolute; visibility: hidden\"></div>");
	document.body.appendChild(tDiv);

  if(ns4||ns6||ie4)
  {
	if(ns4) toolTipSTYLE = document.toolTipLayer;
    else if(ns6) toolTipSTYLE = document.getElementById("toolTipLayer").style;
    else if(ie4) toolTipSTYLE = document.all.toolTipLayer.style;
    if(ns4) document.captureEvents(Event.MOUSEMOVE);
    else
    {
      toolTipSTYLE.visibility = "visible";
      toolTipSTYLE.display = "none";
    }
    document.onmousemove = moveToMouseLoc;
  }
}
function toolTip(msg, fg, bg,obj,w,h)
{
	if(obj){
		obj.onmouseout = function(){toolTip("")};
		}
  if(toolTip.arguments.length < 1) // hide
  {
    if(ns4) toolTipSTYLE.visibility = "hidden";
    else toolTipSTYLE.display = "none";

  }
  else // show
  {
    if(!fg) fg = "#000000";
    if(!bg) bg = "#FFFF33";
	var sty = "padding:10px;";
	var arr = msg.split("|");
	if (msg==null||msg=="")
	{
		if(sty = "padding-top:5px;padding-left:10px;")
		sty = "";
		if(bg = "#FFFF33")
		bg = '#FFFFFF';
		var message = "";
	}
	else
	{
	var message = arr[0]+'<br><br>'+arr[1]+'<br><br>'+arr[2];
	}
    var content =
    '<table style="background:transparent" border="0" cellspacing="0" cellpadding="1" bgcolor="' + fg + '"><tr><td>' +
    '<table border="0" cellspacing="0" cellpadding="1" width="'+ w +'" bgcolor="' + bg + 
    '"><tr><td style='+sty+'><font face="sans-serif" color="' + fg +'" style="font-size:12pt\;">' + msg +
    '</font></td></tr></table></td></tr></table>';
	content = content.replace(undefined, "");
	content = content.replace(undefined, "");
	content = content.replace(undefined, "");
    if(ns4)
    {
      toolTipSTYLE.document.write(content);
      toolTipSTYLE.document.close();
      toolTipSTYLE.visibility = "visible";
    }
    if(ns6)
    {
      document.getElementById("toolTipLayer").innerHTML = content;
      toolTipSTYLE.display='block'
    }
    if(ie4)
    {
      document.all("toolTipLayer").innerHTML=content;
      toolTipSTYLE.display='block'
    }
  }
}
function moveToMouseLoc(e)
{
  if(ns4||ns6)
  {
    x = e.pageX;
    y = e.pageY;
  }
  else
  {
    x = event.x + document.body.scrollLeft;
    y = event.y + document.body.scrollTop;
  }
  toolTipSTYLE.left = x + offsetX;
  toolTipSTYLE.top = y + offsetY;
  return true;
}
window.attachEvent("onload",initToolTips);
