//禁止复制
function nocopy(){
document.body.oncontextmenu = function(){return false};
document.getElementById('text').children[0].onselectstart = function(){return false};
document.getElementById('text').children[0].ondragstart = function(){return false};
document.getElementById('text').children[0].onbeforecopy = function(){return false};
document.write('<style type="text/css">body,#text p:first-child,h1{moz-user-select:-moz-none; -moz-user-select:none; -o-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-user-select:none; user-select:none}</style>');
}
document.getElementById('text').children[0].onselectstart = function(){return false};
document.getElementById('text').children[0].ondragstart = function(){return false};
document.getElementById('text').children[0].onbeforecopy = function(){return false};
document.write('<style type="text/css">body,#text p:first-child,h1{moz-user-select:-moz-none; -moz-user-select:none; -o-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-user-select:none; user-select:none}</style>');
}