var offsetxpoint = -60;
//Customize x offset of tooltip
var offsetypoint = 20;
//Customize y offset of tooltip
var ie = document.all;
var ns6 = document.getElementById && !document.all;
var tipobj;

function hideddrivetip() {
	if (ns6 || ie) {
		tipobj.style.visibility = "hidden";
		//tipobj.style.left = "-1000px";
		tipobj.style.backgroundColor = '';
		tipobj.style.width = '';
	}
}

function ddrivetip(event,thetext, thecolor, thewidth) {
	if (ns6 || ie) {
		tipobj.style.visibility = "visible";
		if (typeof thewidth != "undefined") tipobj.style.width = thewidth + "px";
		tipobj.style.backgroundColor = thecolor;
		var x = event.clientX + document.body.scrollLeft;
		var y = event.clientY + document.documentElement.scrollTop;
		tipobj.style.left = x+"px";
		tipobj.style.top = y+"px";
		tipobj.innerHTML = thetext;
		return false;
	}
}