Add the following code to any .js file of your choosing and save it on your server.
document.ondragstart = function() { return false; }
document.onselectstart = function() { return false; }
document.oncontextmenu = function() { return false; }
Be sure to call upon the file on the server using the script tag in your HEAD of your web pages.