try {
	var _toolTips = new Array();
	function tool_tip(id, string, width) {
		string = string.replace(/`/, "'");
		_toolTips[id] = string;
		document.getElementById(id).onmousemove = function(e, string) {
			x = BrowserDetect.mouseX(e) + 20;
			y = BrowserDetect.mouseY(e) + 0;
			_toolTip.style.visibility = 'visible';
			if(width != null) {
				_toolTip.style.width = width;
			} else {
				_toolTip.style.width = 'auto';
			}
			//_toolTipShadow.style.display = 'block';
			_toolTip.innerHTML = _toolTips[id];
			//_toolTipShadow.innerHTML = _toolTips[id];
			if(BrowserDetect.browser == 'Explorer') {
				//_toolTipShadow.style.width = _toolTip.clientWidth - 14 + 'px';
			} else {
				//_toolTipShadow.style.width = _toolTip.clientWidth - 13 + 'px';	
			}
			_toolTip.style.left = x + 'px';
			_toolTip.style.top = y + 'px';
			//_toolTipShadow.style.left = x + 2 + 'px';
			//_toolTipShadow.style.top = y + 2 + 'px';
		}
		document.getElementById(id).onmouseout = function() {
			_toolTip.innerHTML = '';
			//_toolTipShadow.innerHTML = '';
			_toolTip.style.visibility = 'hidden';
			//_toolTipShadow.style.display = 'none';
		}
	}
	
	var tool_div_found = false;
		var _toolTip = document.getElementById('tool_tip');
		var _toolTip = document.createElement('div');
	_toolTip.style.visibility = 'hidden';
	_toolTip.className = 'tool_tip';
	_toolTip.style.position = 'absolute';
	_toolTip.style.top = '0';
	_toolTip.style.left = '0';
	
	var _toolTipShadow = document.createElement('div');
	_toolTipShadow.className = 'tool_tip_shadow';
	_toolTipShadow.style.visibility = 'hidden';
	_toolTipShadow.style.position = 'absolute';
	_toolTipShadow.style.top = '0';
	_toolTipShadow.style.left = '0';

		document.body.appendChild(_toolTip);
	//document.getElementById('content').appendChild(_toolTipShadow);
} catch(e) {}