<!--
<!-- hide this script from non-javascript-enabled browsers

/**
 * (c) Copyright 2008, 2009 Summer Hill Software Solutions, Inc.  All Rights Reserved.
 * 
 *                           Summer Hill Software Solutions, Inc.
 *                           Larkspur, CO 80118 U.S.A.
 * 
 * This is private, confidential, and propritary property of Summer Hill Software Solutions, Inc.
 * This property may not be distributed in any form without the express written consent
 * of an officer of Summer Hill Software Solutions, Inc.
 * 
 * Copyright:   Copyright (c) 2008, 2009
 * Company:     Summer Hill Software Solutions, Inc.
 * @version 1.0
 *
 */

RightClickMessage    = "This content is protected by United States and international copyrights.";

if (navigator.userAgent.indexOf("Opera")!=-1 && document.getElementById) type="OPERA"; 
else if (document.all) type="EXPLORER"; 
else if (document.layers) type="NETSCAPE"; 
else if (!document.all && document.getElementById) type="MOZILLA"; 
    
if (type == "EXPLORER" || type == "MOZILLA" || type == "OPERA")
{
    document.oncontextmenu=handleRightClick;
}
else
{
    document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
    document.onmousedown=handleRightClick;
} 

function handleRightClick(e)
{
    if (type == "NETSCAPE")
    {
        if (e.which==2 || e.which==3)
        {
            messagewindow=alert(RightClickMessage);
            return false;
        }
    }
    else
    {
        messagewindow=alert(RightClickMessage);
        return false;
    }
}

//-->
