// disable the right mouse button
if (document.all)
{
    function click()
	 {
    	if (event.button==2)
		 {
    		alert('Sorry!')
   		 }
	}
    document.onmousedown=click
} 
