if (parseInt(navigator.appVersion.charAt(0))>=4){ 
var isNN=(navigator.appName=='Netscape')?1:0; 
var isIE=(navigator.appName.indexOf('Microsoft')!=-1)?1:0; 
} 
if (isNN) 
{
     function show(divID,o)
  {
    var div=document.getElementById(divID);
    div.style.left=getL(o)+"px";
      var top=  getT(o)+o.offsetHeight;
  div.style.top=top+"px"
    div.style.display="block";
   }
}

if (isIE) 
{
 
    function show(divID,o)
  {
    var div=document.getElementById(divID);
    div.style.pixelLeft=getL(o);
    div.style.pixelTop=getT(o)+o.offsetHeight;
 
    div.style.display="block";
   }
}

  


function over(divID)
{
    var div=document.getElementById(divID);
    div.style.display="none";
}

//取得左边的位移
function getL(e){
  var l=e.offsetLeft;
  while(e=e.offsetParent){
    l+=e.offsetLeft;
  }
  return l+150;
}
//取得顶部的位移
function getT(e){
  var t=e.offsetTop;
  while(e=e.offsetParent){
    t+=e.offsetTop;
  }
  return t;
}   
