// Copyright (c) 2006, Randall Ellison
// Anti-theft mechanism to discourage various
// techniques of acquiring copyrighted content.

document.onmousedown = function ( )
{
        if( event.button == 2 )
        {
                alert( "This site and its contents are protected by U.S. Copyright law. All rights reserved." );
                return false;
        }
};
document.onselectstart = function ( )
{
        alert( "This site and its contents are protected by U.S. Copyright law. All rights reserved." );
        return  false;
};
