var tips_tarayici_ie = document.all;
var tips_x = 0;
var tips_y = 0;

function tips_fare_xy(e){
	if ( !e ) { e = window.event };
	
	if ( e ) {
		if ( e.pageX || e.pageY ) {
			tips_x = e.pageX+70;
			tips_y = e.pageY+30;
		}
		else if ( e.clientX || e.clientY ) {
			tips_x = e.clientX + document.body.scrollLeft+70;
			tips_y = e.clientY + document.body.scrollTop+30;
		}
	}
	
	if ( tips_x < 0 ) { tips_x = 0 };
	if ( tips_y < 0 ) { tips_y = 0 };
}

function tips_goster(e){
	tips_fare_xy(e);
	
	if ( !e ) { e = window.event };
	
	var nesne;
	var x;
	var y;
	var w;
	var h;
	
	if ( e.target!= null ) { nesne = e.target }
	else { nesne = e.srcElement }
	
	var metin = tips_metni(nesne);
	var tips_div = document.getElementById("tips_div");
	
	if ( metin == "-" ) {
		tips_div.style.display = "none";
	}
	else {
		metin = metin.replace(/\[/g, "<");
		metin = metin.replace(/\]/g, ">");
		
		tips_div.innerHTML = metin;
		tips_div.style.display = "block";
		
		w = tips_nesne_w(tips_div);
		h = tips_nesne_h(tips_div);
		
		x = tips_x + 10;
		if ( x > tips_body_w() - (w + 10) ) { x = tips_body_w() - (w + 10) }
		if ( x < 0) { x = 0 }
		
		y = tips_y - ( 10 + h );
		if ( y < 0) { y = 0 }
		
		tips_div.style.left = x + "px";
		tips_div.style.top = y + "px";
	}
}

function tips_metni(n){
	var i = 0;
	var metin = "-";
	var ozellikler = n.attributes;
if (ozellikler) {
	for ( i = 0; i < ozellikler.length; i++ ) {
		if ( ozellikler[i].name == "tips" ) {
			metin = ozellikler[i].value;
			break;
		}
	}
}
	return metin;
}

//------------------------------------------------------------------------
function tips_nesne_w(nesne){
	return nesne.offsetWidth;
}

function tips_nesne_h(nesne){
	return nesne.offsetHeight;
}

function tips_body_w(){
	if ( tips_tarayici_ie ) {
		return window.document.body.clientWidth;
	}
	else {
		return window.innerWidth - 21;
	}
}

function tips_body_h(){
	if ( tips_tarayici_ie ) {
		return window.document.body.clientHeight;
	}
	else {
		return window.innerHeight;
	}
}
//------------------------------------------------------------------------

document.write("<div id='tips_div' name='tips_div' style='");
	document.write("position: absolute;");
	document.write("display: none;");
	document.write("z-index: 255;");
	
	document.write("padding: 5px;");
	document.write("top: 0px;");
	document.write("left: 0px;");
	
	//Yazę rengi
	document.write("color: #0000ff;");
	
	//Zemin rengi
	document.write("background-color: #ffee00;");
	
	//KenarlÄ±k
	document.write("border: 1px solid #ff0000;");
	
	//seffaflęk oranę, az deger daha seffaf.
	var seffaflik = "99";
	
	document.write("filter: alpha(opacity:" + seffaflik + ");");
	document.write("-khtml-opacity: 0." + seffaflik + ";");
	document.write("-moz-opacity: 0." + seffaflik + ";");
	document.write("-o-opacity: 0." + seffaflik + ";");
	document.write("opacity: 0." + seffaflik + ";");
	
document.write("'>&nbsp;</div>");

//document.onmousemove = tips_goster;
document.onmousemove = tips_goster;