This will resize the window and place it in the center of the monitor  (works on any monitor resolution)..


<SCRIPT language=JavaScript>
<!--
self.focus();
self.resizeTo(400,400);
zleva=(screen.width-400)/2;
zhora=(screen.height-400)/2;
self.moveTo(zleva,zhora);
if (self != top)
top.location = self.location
//-->
</SCRIPT>