﻿// JScript File



/*
屏蔽鼠标右键
*/

 document.oncontextmenu=function()
{   
    return false;
}
document.onmousedown=function()
{
  if(event.button==2)
  {                
    return false;
  }
} 
