
     
          function findPosY(obj)
          {
              var curtop = 0;
              if (obj.offsetParent)
              {
                  while (obj.offsetParent)
                  {
                      curtop += obj.offsetTop
                      obj = obj.offsetParent;
                  }
              }
              else if (obj.y)
                  curtop += obj.y;
              return curtop;
          }

          function findPosX(obj)
          {
              var curleft = 0;
              if (obj.offsetParent)
              {
                  while (obj.offsetParent)
                  {
                      curleft += obj.offsetLeft
                      obj = obj.offsetParent;
                  }
              }
              else if (obj.x)
                  curleft += obj.x;
              return curleft;
          }
          
          
    
             
       
          var show = true;
          
          function showWord(pop, anchor) {
          	
          	 show = true;
          	  a = document.getElementById(anchor);
          	  /*
          	  x = findPosX(a);
          	  y = findPosY(a);
          	  */
          	  
          	  p = document.getElementById(pop);
          	  
              
              p.style.top = findPosY(a) + 15 + "px";
          	  p.style.left = findPosX(a)  + "px";
           	  
          	  
           	  p.style.visibility = "visible";
          }
          
          function hideWord(pop) {
          	  show = false;
          	  wTimer = window.setTimeout("hm('"+pop+"')", 0); 
          }
          
          function hm(pop) {
          	  if (!show) {
          	  p = document.getElementById(pop);
          	  p.style.visibility = "hidden";
          	  }
          }
          

