function hidetooltip(e, that) {

	// cancel bubble
	if (!e) var e = window.event;
	e.cancelBubble = true;
	if (e.stopPropagation) e.stopPropagation();
	
	// hide
	that.T_LEFT=true;
	return escape('');
}
