Окно медленно разворачивается ПРИМЕР body поставить так:
Code
<BODY onLoad="ReSize()">
Code
<script language="JavaScript">
<!--
var width=screen.width
var height=screen.height
function ReSize()
{window.resizeTo(width/4,height/4);
width=width/4;
height=height/4;
window.moveTo(0,0);
openwindow();
}
function openwindow()
{while(width < screen.width && height < screen.height)
{window.resizeBy(4,3)
width+=4
height+=3}
}
//-->
</script>