function t(v,e,t){

if(!v.title||!document.createElement)return

t=document.createElement("div")
t.move=function(e){

var b=document.body;
var h = window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop;

e=e||event

poz_width=b.clientWidth-(b.clientWidth/3);
poz_height=b.clientHeight-(b.clientHeight/2);

t.style.left=e.clientX+"px";

t.style.top=((e.clientY-t.offsetHeight)+h)+"px";

}

t.hide=function(x){
v.title=t.innerHTML

if(x=document.getElementById("tooltip")) document.body.removeChild(x)}

t.move(e);
t.id="tooltip"
t.innerHTML=v.title;v.title=""
document.body.appendChild(t)
v.onmouseout=t.hide
v.onmousemove=t.move
  
}

function t2(v,e,t2) {

var b = document.body;
var h = window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop;

tx = document.createElement("div");

tx.move = function(e) {

e = e || event;

tx.style.left = e.clientX+5+"px";

tx.style.top = ((e.clientY-tx.offsetHeight)+h)+"px";

}

tx.hide = function(x) {

v.title = tx.innerHTML;

if (x = document.getElementById("tooltip2")) document.body.removeChild(x)}

tx.move(e);
tx.id = "tooltip2";
tx.innerHTML = v.title;
v.title = "";
document.body.appendChild(tx);
v.onmouseout = tx.hide;
v.onmousemove = tx.move;

}
