Window Browser JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
John Wiley & Sons CopyRight 2001
*/


Window Resize Methods

function doResizeBy(form) {
    var x = parseInt(form.resizeByX.value)
    var y = parseInt(form.resizeByY.value)
    var count = parseInt(form.count.value)
    for (var i = 0; i < count; i++) {
        window.resizeBy(x, y)
    }
}
function doResizeTo(form) {
    var x = parseInt(form.resizeToX.value)
    var y = parseInt(form.resizeToY.value)
    window.resizeTo(x, y)
}




Enter the x and y increment, plus how many times the window should be resized
 by these increments:


Horiz:
Vert:
How Many:
 onClick="doResizeBy(this.form)">


Enter the desired width and height of the current window:

Width:
Height:
 onClick="doResizeTo(this.form)">