You are here: irt.org | FAQ | JavaScript | Window | Q1323 [ previous next ]
You could try this (seems only to work in Internet Explorer):
<html> <head> <script language="JavaScript"><!-- document.onmouseover=resizemebig; document.onmouseout=resizemesmall; function resizemebig() { window.resizeTo(800,600); } function resizemesmall() { window.resizeTo(200,200); } //--></script> </head> <body> .... </body> </html>