﻿// JScript 文件

function goUrl(x)   
{   
     window.location.href=x;   
}   
   function disabledKeyboardAndRight()
    {
       document.oncontextmenu=function(){return false;}
       document.onselectstart=function(){return false;}
        document.onmousedown=document.onkeydown=norightclick; // for all others 
    }  
        function norightclick(e){ 
            e=e||window.event;
            if(-[1,])
            {          
                 if(e.which==2||e.which==3||e.which==16||e.which==17||e.which==18) 
                 {
                    return false;      
                 }
            }
        }     
