// JavaScript Document
function click() {
//alert('南昌赛乐氏科技有限公司！') 
return false;}
function click1() 
{
if (event.button!=1) 
{
//alert('为了防止非法拷贝信息，我们暂时禁止了右键功能！') 
return false;

}
}
function CtrlKeyDown(){
if (event.ctrlKey) {
//alert('为了防止非法拷贝信息，我们暂时禁止了CTRL键！') 
return false;

}
}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
//document.onmousedown=click1;
//document.onselectstart=click1;
document.oncontextmenu=click1;