// JavaScript Document
document.oncontextmenu = function()
{
 return false;
}

function whichButton(event)
{
	if (event.button==2)//RIGHT CLICK
	{
		alert("Not Allowed Right Click!");
	}
}
function noCTRL(e)
{
   var code = (document.all) ? event.keyCode:e.which;   
   var msg = "Sorry, this functionality is disabled.";
   if (parseInt(code)==17) //CTRL
   {
	   alert(msg);
	   window.event.returnValue = false;
   }
}
