var offsetfromcursorX=-230; //Customize x offset of tooltip
var offsetfromcursorY=15;   //Customize y offset of tooltip

var ie=document.all;
var ns6=document.getElementById && !document.all;

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
}

var t;
function hideddrivetip(idobj){
theid = idobj;
t=setInterval("hideddrivetip1(theid)",300);
}

function hideddrivetip1(idobj){
if (ns6||ie){
tipobj=document.all? document.all[idobj] : document.getElementById? document.getElementById(idobj) : "";
tipobj.style.display="none";
tipobj.filters.alpha.opacity=10;
}
}

function ddrivetip(idobj){
clearInterval(t);
if (ie||ns6){
tipobj=document.all? document.all[idobj] : document.getElementById? document.getElementById(idobj) : "";
var curX=(ns6)?cursorX: event.x+ietruebody().scrollLeft;
var curY=(ns6)?cursorY: event.y+ietruebody().scrollTop;
tipobj.style.left=curX+offsetfromcursorX+"px";
tipobj.style.top=curY+offsetfromcursorY+"px";
tipobj.style.display="block";
high(tipobj);
}
}

//for netscape
var cursorX;
var cursorY;
function cursorpos(e) {if(ns6){ cursorX = e.pageX;  cursorY = e.pageY; }}
document.onmousemove=cursorpos;







//highlight function
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",1)
}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<85)
cur2.filters.alpha.opacity+=7
else if (window.highlighting)
clearInterval(highlighting)
}