//
//	show hint	
//

var hb;

function hint(content, obj, e, width){

	var ie = document.all
	var ns6 = document.getElementById&&!document.all
	 hb = document.getElementById("hb");
	
	if (hb == null || hb == "") {
		var div = document.createElement("div")
		div.setAttribute("id", "hb")
		document.body.appendChild(div);
		hb = document.getElementById("hb");
	}
	
	if ((ie||ns6) && hb ) {
		
		hb.innerHTML = content;
		hb.style.left = hb.style.top =-500;
		
		if (width != ""){
			hb.widthobj = hb.style;
			hb.widthobj.width = width;
		}
		
		
		hb.style.left = e.clientX + 5 + "px";
		hb.style.top  = e.clientY;
		hb.style.visibility = "visible";
		
		obj.onmouseout = hide;
	}
	
}

function hide(e){
	hb.style.visibility = "hidden";
	hb.style.left = "-500px";
}
