var obj;
var obj2;
var timerID;
var old;

function info(e,text)
{
info_XY(10,10,e,text);
}

function info_XY(xx, yy, e, text)
{
if (!browser)
return
/*
if (browser=='ie')
obj=top.document.all.detail;
if (browser=='nn6')
obj=top.document.getElementById('detail');
*/
if (browser=='ie')
obj=document.all.detail;
if (browser=='nn6')
obj=document.getElementById('detail');
data="<div align=left OnMouseOver=\"activeInfo()\" OnMouseOut=\"hideInfo()\" style=\"margin-left:5px;\">"+"<div style=\"margin-left:5px;\"><B></B></div>"+text+"<br>";
obj.innerHTML=data;
moveInfo(xx,yy,e);
obj.style.visibility='visible';
}

function moveInfo(xx, yy, e)
{
clearTimeout(timerID);
x=e.clientX+document.body.scrollLeft+xx;
y=e.clientY+document.body.scrollTop+yy;
obj.style.left=x;
obj.style.top=y;
}

function hideInfoT()
{
if (!browser)
return
timerID=setTimeout("hideInfo()", 800)
}

function activeInfo()
{
clearTimeout(timerID);
}

function hideInfo()
{
obj.style.visibility='hidden';
}

