﻿// JScript 文件

function a()
{
//    document.body.onselectstart = function()
//    {
//        if(document.activeElement != null && document.activeElement.tagName.toLowerCase() == "input")
//        {
//            return true;
//        }
//        return false;
//    }
//    document.body.oncontextmenu = function()
//    {
//        return false;
//    }
//    document.body.ondrag = function(){return false};
}
window.attachEvent("onload", a);

