<!-- Original:  Sean Decker -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function expand() {
for(x = 0; x < 10; x++) {
window.moveTo(screen.availWidth * -(x - 10) / 100, screen.availHeight * -(x - 10) / 100);
window.resizeTo(screen.availWidth * x / 100, screen.availHeight * x / 100);
}
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
}

