Window Browser JavaScript DHTML




    function function1() {
        if (navigator.appName.indexOf("Microsoft") != -1) {
            var m = screen.bufferDepth;
            alert("The buffering for this screen is "+m);
        } else {
            alert("Netscape: no default for buffering depth"); 
        }
    } 
    function function2() {
        screen.bufferDepth = -1;
        var m = screen.bufferDepth;
        alert("The buffering depth for this screen has been changed to "+m); 
    }