// Set the alert message here when right mouse button is clicked.
var alert_msg   = 'Right Click Disabled on this Page!!';


////////////// Don't Edit Below ////////////////

function mp(e)
    {
    if(document.all)
        {
            if((event.button==2)||(event.button==3))
                {
                    alert(alert_msg);
                    return false
                }
        }
        
    if(document.layers)
        {
            if(e.which==3)
                {
                    alert(alert_msg);
                    return false
                }
        }
    }
    
if (document.layers) 
    {
        document.captureEvents(event.mousedown)
    }
document.onmousedown=mp;

//-->