// JavaScript Document
function stop(){
	return false;
}
document.oncontextmenu=stop;

function click() { return false;} 
function click1(){if (event.button==2) {return false; }} 
function CtrlKeyDown(){ 
	if(event.keyCode==67&&event.ctrlKey) 
	{ 
		clipboardData.setData('text',''); 
		return false; 
	} 
} 
document.onkeydown=CtrlKeyDown; 
document.onselectstart=click; 
document.onmousedown=click1; 
