<!--
function toggleSH(divName) {
    var whatSH = document.getElementById(divName);
    if(whatSH.style.display == "none"){
        whatSH.style.display = "block";
    }
    else{
        whatSH.style.display = "none";
    }
}

function linenInfo(whatDiv, oby){
    if (document.getElementById) {
        //var offX = window.event.clientX;
        //var offY = window.event.clientY;
        //var offX = oby.x;
        //var offY = oby.y;
       var offX =  (screen.width/2)-290;
        var offY = findPosY(oby)+14;       
        var obj = document.getElementById(whatDiv);
        obj.style.position = "absolute";
        obj.style.display = "block";
        obj.style.left = offX + "px";
        obj.style.top = offY + "px";
    }
}

function info(whatDiv, oby){
    if (document.getElementById) {
        //var offX = window.event.clientX;
        //var offY = window.event.clientY;
        //var offX = oby.x;
        //var offY = oby.y;
       var offX =  findPosX(oby)+14;
        var offY = findPosY(oby); 
        var obj = document.getElementById(whatDiv);
        obj.style.position = "absolute";
        obj.style.display = "block";
        obj.style.left = offX + "px";
        obj.style.top = offY + "px";
    }
}

function noinfo(whatDiv){
 if (document.getElementById) {
    document.getElementById(whatDiv).style.display = 'none';
 }
}

function findPosX(obj) {
    var curleft = 0;
    if(obj.offsetParent)
        while(1) 
        {
          curleft += obj.offsetLeft;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.x)
        curleft += obj.x;
    return curleft;
  }

function findPosY(obj)  {
    var curtop = 0;
    if(obj.offsetParent)
        while(1)
        {
          curtop += obj.offsetTop;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.y)
        curtop += obj.y;
    return curtop;
  }

-->
