// JavaScript Document
function click1() 
{
  if (event.button==2) 
  {
    alert('请不要右击，如需服务请联系24小时电话：0531-88221549') 
  }
}
function CtrlKeyDown()
{
  if (event.ctrlKey) 
  {
    alert('请不要按Ctrl键，如需服务请联系24小时电话：0531-88221549') 
  }
}
document.onkeydown=CtrlKeyDown;
document.onmousedown=click1;
