<!-- <![CDATA[
//tooltip by rimk
function tooltip(d,E,b,i,a){
  d=document;E=d.documentElement;b=d.body;if(!E)return;
	IE=document.all?true:false;
	
  for(i=0;a=b.getElementsByTagName("a")[i];i++){
    if(a.title){
			with(a.t=d.createElement("div")){
        //style.visibility="hidden"
				id="tooltip"
        innerHTML=a.title.replace(/\|/g,"<br />")
      }
			//b.appendChild(a.t);
			
      a.onmouseover=function(e){
				with(this){
					title="" 
					t.style.visibility="visible";
					onmousemove(e)
				}
        b.appendChild(this.t)
      }
      a.onmouseout=function(x){
				 with(this){
						t.style.visibility="hidden" 
						title=t.innerHTML.replace(/<br \/>/g,"\|")
					}
         if(x=d.getElementById("tooltip"))b.removeChild(x)
      }
		
			a.onmousemove=function(e){
				ix=15; iy=5;
				
				if(IE) {msx=event.clientX; msy=event.clientY;} 
				else {msx=e.pageX-b.scrollLeft; msy=e.pageY-b.scrollTop;}
				temix=msx+ix; temiy=msy+iy;

				if(temix<0) temix=0;
				tmp=b.clientWidth-temix-d.getElementById("tooltip").offsetWidth-10;
				if(tmp<0) {temix+=tmp; if(temix<0) temix=0;}
	
				if(temiy<0) temiy=0;
				tmp=b.clientHeight-temiy-d.getElementById("tooltip").offsetHeight-10;
				if(tmp<0) {tmp=temiy-d.getElementById("tooltip").offsetHeight-10; if(tmp>=0)temiy=tmp;}
				
				e=e||event;with(this.t.style){
         left=b.scrollLeft+temix+"px"
         top=b.scrollTop+temiy+"px"
        }
      }
    }
  }
}
function addEvent(O,E,F,x){
  return(x=O.addEventListener)?x(E,F,1):(x=O.attachEvent)?x('on'+E,F):!1
}
addEvent(window,'load',tooltip);
// ]]> -->
