
/* <PRE lang=jscript nd="8"><script> */
    /* this function shows the pop-up when
     user moves the mouse over the link */
    function Show()
    {
        
        /* display the pop-up */
        Popup.style.display="block";
        /* set the pop-up's left */
        Popup.style.left = x;
        /* set the pop-up's top */
        Popup.style.top = y;
    }
    /* this function hides the pop-up when
     user moves the mouse out of the link */
    function Hide()
    {
        /* hide the pop-up */
        Popup.style.display="none";
    }
/* </script></PRE> */