// JavaScript Document
//加入页面保护
    function rf()
      {return false; }
    document.oncontextmenu = rf
    /*function keydown()
      {if(event.ctrlKey ==true || event.keyCode ==93 || event.shiftKey ==true){return false;} }
     document.onkeydown =keydown
     */
	 function drag()
      {return false;}
	  
	 function drag1()
      {return false;}
	  
	 function drag2()
      {return false;}
	  
	 function drag3()
      {return false;}
	  
    document.ondragstart=drag 
    document.oncontextmenu=drag1 
    document.onselectstart=drag2 
    document.oncopy=drag3
	
	function keydown()
      {if(event.ctrlKey ==true || event.keyCode ==93 ){return false;} }
     document.onkeydown =keydown
	 	
function stopmouse(e) { 
		if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))  
 		return false; 
      else if  
      (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {  
 		alert("欢迎访问我公司网站！");
		return false;  
 		}
		return true; 
      } 
      document.onmousedown=stopmouse; 
      if (document.layers) 
       window.captureEvents(Event.MOUSEDOWN); 
       window.onmousedown=stopmouse;  
