Browser Window Control
With JavaScript, you can adjust size and position of browser window.
You can aslo decide whether to display toolbars and set a message for status bar.
Preview in new window >
Download the source code >
How it works
<script language=javascript>
// Set status bar message:
var words = " This is your message for the status bar"
window.status=words;
// Position and size of browser window:
var x=Math.round(screen.availWidth);
var y=Math.round(screen.availHeight);
window.moveTo(200,100);
window.resizeTo(x/2, y-200);
</script>
