
    <!--
    function right(e)
    {
        if (document.layers && e.which == 3)
        {
            alert(" © 42U.com - please read our rules of content usage and sharing:                 www.42u.com/copyright.htm");
            return false;
        }
        else if (document.all && event.button == 2)
        {
            alert(" © 42U.com - please read our rules of content usage and sharing:                 www.42u.com/copyright.htm");
            return false;
        }
        return true;
    }

    document.onmousedown=right;

    if (document.layers)
    {
        window.captureEvents(Event.MOUSEDOWN);
    }
    // -->

