Source for JavaScript Demo rubber.html

<HEAD>
<TITLE>Netprog JavaScript Demo - Annoying Rubber Windows</TITLE>
<SCRIPT>
function my_favorite_size() {
  window.resizeTo(640,480);
}

</SCRIPT>
</HEAD>
<BODY onLoad="my_favorite_size()"   onResize="my_favorite_size()">

<H2>Rubber Window</H2>
<P>You should not be able to change the size of this window - it
should keep returning to the same size.</P>