//禁止右键
//document.oncontextmenu = function() { return false;}

//禁止选取
//document.ondragstart = function() { return false;}
//document.onselectstart = function() { return false;}
//document.onselect = function() { document.selection.empty();}
//document.onbeforecopy = function() { return false;}
//document.onmouseup = function() { document.selection.empty();}

//JS脚本永不出错
function killErrors(){ 
	return true; 
} 
window.onerror = killErrors; 

//状态栏属性
//window.status="Design & Coding : http://www.jtnet.cn"
