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

var BlockerText = 'COPYRIGHT WARNING\n\nCopyright (c) 1998-2008, Randall Krause. All rights reserved.\n\nThis site and its contents are protected by U.S. and international copyright laws.\n\nUnauthorized reproduction, exhibition, adaptation, and distribution is expressly prohibited.';

document.onmousedown = function ( )
{
        if( event.button == 2 )
        {
                alert( BlockerText );
                return false;
        }
};
document.onselectstart = function ( )
{
        alert( BlockerText );
        return  false;
};

