  // A script used for tooltips. The script must be included in the source of an IFRAME. The onLoad of the IFRAME body must call initObjects().
  //The IFRAME catches the mouse events and propagates them to the parent window
  
  var ns4=document.layers;
  var ns6=document.getElementById&&!document.all;
  var ie4=document.all;
  
  

  function initIFramePopup() {
    if(ns4) {
      document.captureEvents(Event.MOUSEMOVE);
    }  
    else {
       document.onmousemove=propagateMouseEvent;
    }
  }

  function propagateMouseEvent(e) {
     var x=(ns4||ns6)?e.pageX:event.screenX+document.body.scrollLeft;
     var y=(ns4||ns6)?e.pageY:event.screenY+document.body.scrollTop;
     parent.iframeMouseListener(x, y, window.name, parent.screenLeft, parent.screenTop);
  }
  
