function click() { alert('欢迎浏览广州市绿点塑胶制品有限公司') }
function click1() { if (event.button==2) {alert('欢迎浏览广州市绿点塑胶制品有限公司!') }}
function CtrlKeyDown(){ if (event.ctrlKey) {alert('欢迎浏览广州市绿点塑胶制品有限公司!') }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
