/*
	凌铂微步创意工作室 禁止鼠标右键脚本代码
	=========================================================
	(c)2010 www.apoih.com
	=========================================================
*/
function click(e) {
 if (document.all) { //ie
  if (event.button==1||event.button==2||event.button==3) {
   oncontextmenu='return false';
  }
 }
 if (document.layers) { //ff
  if (e.which == 3) {
   oncontextmenu='return false';
  }
 }
}
if (document.layers) {//other
 document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")
