//<![CDATA[ 
var aTmpTitle = ""; 
function  Point(x,y) 
{ 
    this.x  =  x;  this.y  =  y; 
} 
  
//Get  the  mouse  position 
function  getMouseLoc(e)  
{ 
    var  IE  =  document.all?true:false;  //Test  to  see  if  IE 
    if  (!IE)  document.captureEvents(Event.MOUSEMOVE);  //If  not  IE 
  
    if  (IE)  {  
    mouseLocation.x  =  event.clientX  +  document.body.scrollLeft; 
    mouseLocation.y  =  event.clientY  +  document.body.scrollTop; 
    }  else  {    //  grab  the  x-y  pos.s  if  browser  is  NS 
    mouseLocation.x  =  e.pageX; 
    mouseLocation.y  =  e.pageY; 
    }    
    //  catch  possible  negative  values  
    if  (mouseLocation.x  <  0){mouseLocation.x  =  0} 
    if  (mouseLocation.y  <  0){mouseLocation.y  =  0}    
    positionDiv(); 
    return  true; 
} 
  
function  positionDiv() 
{    
    //Set  the  position  of  the  hidden  div 
    document.getElementById('overdiv').style.top  =  (mouseLocation.y  +  10)  +  "px"; 
    document.getElementById('overdiv').style.left  =  (mouseLocation.x  +  10)  +"px"; 
    document.getElementById('overdiv').style.position  =  "absolute";    
} 
  
function showhiddendiv(mylink) 
{ 
    mouseLocation  =  new  Point(0,0); 
    document.onmousemove  =  getMouseLoc; 
    document.getElementById('overdiv').style.display = 'block'; 
    var linkdiv = document.getElementById('hiddendiv'); 
    var linktitle = document.getElementById(mylink); 
    linkdiv.innerHTML=linktitle.title; 
    aTmpTitle = linktitle.title; 
    linktitle.title = ''; 
} 
  
function hiddendiv(mylink) 
{ 
    var linktitle = document.getElementById(mylink); 
    linktitle.title = aTmpTitle; 
    document.getElementById('overdiv').style.display = 'none'; 
} 
//]]> 
