function chT_Over(icerik){
	document.getElementById('chTooltip').innerHTML = icerik;
	document.getElementById('chTooltip').style.visibility = 'visible';
}

function chT_Move(e){
	if(!e) e = window.event;
	document.getElementById('chTooltip').style.top  = (e.clientY + chT_ScrollY() + 18) + 'px';
	document.getElementById('chTooltip').style.left = (e.clientX + chT_ScrollX() - 2) + 'px';
}

function chT_Out(){
	document.getElementById('chTooltip').style.visibility = 'hidden';
}

function chT_ScrollX(){
	if(window.scrollX) return window.pageXOffset;
	else return document.documentElement.scrollLeft;
}

function chT_ScrollY(){
	if(window.scrollY) return window.pageYOffset;
	else return document.documentElement.scrollTop;
}