// JavaScript Document

function noClick() 
 {
    if(event.button==2) 
	 {
        alert('Sorry! \nThis option is disabled');
		//return false;
     }
 }
document.onmousedown=noClick;
