function show_tip(html){
	
	var tip = new getObj('tool-tip');
	
	tip.style.display = 'none';
	
	tip.obj.innerHTML = html;
	
	document.onmousemove = position_tip;
}

function position_tip(e){
	
	getMouseXY(e);
	
	var tip = new getObj('tool-tip');
	
	tip.style.top = (mouseY + 20) + 'px';
	tip.style.left = (mouseX) + 'px';
	tip.style.display = 'block';
	
	tip.obj.className = 'visible';
	
	if(IE6){
		
		tip.style.position = 'absolute';
		tip.style.width = '300px';
		tip.style.background = '#fef58e';
		tip.style.border = '1px solid #e9da2b';
		tip.style.padding = '5px';
	}
	
	
}

function hide_tip(){
	
	var tip = new getObj('tool-tip');
		
	tip.obj.className = 'hidden';
	
	tip.obj.innerHTML = '';
	
	if(IE6){
		tip.style.display = 'none';
	}
	
	document.onmousemove = null;
}