function showMorePop(event, that, obj){
   try{
      x = event.currentTarget.offsetLeft;
      y = event.currentTarget.offsetTop;
  
   }
   catch(nn){
      /*  
      x = 0;
	  thatX = that;
      thatX = thatX.offsetParent
      x += thatX.offsetLeft;
      x += thatX.offsetParent.offsetLeft;
      */
	  
	  
	 x = 0;
     thatX = that;
     while( thatX = thatX.offsetParent ){
        x+= thatX.offsetLeft;
     }
     x = x - document.getElementById('container').offsetLeft;
	  
	  
      thatY = that; 
      y = thatY.offsetTop;;
      while (thatY = thatY.offsetParent) {
         y += thatY.offsetTop;
      }
      y += 18;
   }   

  // need to display first to get height, but doing hidden at -500px   
   document.getElementById(obj).style.left = '-500px';
   document.getElementById(obj).style.display = 'block';

   y -= document.getElementById(obj).offsetHeight;
   y += 17;
   
   document.getElementById(obj).style.left = x + 'px';
   document.getElementById(obj).style.top = y + 'px';
   document.getElementById(obj).style.display = 'block';
} // end showMorePop


function hideMorePop(event, obj){
   event = event || window.event;

	if (event) {
	   var target = event.relatedTarget || event.toElement;
	   if (target && target.id) {
	      if ((target.id.indexOf("RolloverPop") != -1) || (target.id.indexOf("popLink") != -1)) {
		     return;
		  }
	   }
	}
   
   document.getElementById(obj).style.display = 'none';
   return;

} // end hideMorePop
