           <!-- HIDE CODE

            var message;
            var warnMsg = "WARNING!  This code may not be used by others " +
                          "without the permission of the web site administrator.  " +
                          "To obtain permission, send an e-mail (use the button provided), with a valid " +
                          "e-mail address, filling in all the information along with a " +
                          "detailed description of why you want the code.  " +
                          "Thank you for your cooperation.";

            // event.button = 2 (Right Mouse)
            // event.button = 4 (Middle Mouse)

            function displayMessage(button)
            {
                message = "The ";

                if (event.button==2)
                    message += "right";
                else
                    message += "middle";

                message += " mouse button is pressed.  ";

                return message + warnMsg;

            }

            function click(e)
            {
                if (document.all)
                {
                    if (event.button==2 || event.button==4)
                    {
                        alert(displayMessage(event.button));
                        return false;
                    }
                }

            }

            document.onmousedown = click;

            if (top.location !== self.location) 
            {
                top.location = self.location;
            }


            //  END HIDE CODE -->
