I"m searching for the code to customize my window.
Thing is i can only find the code for the new window function and i'm not using that, since i'm passing value to a form.

Only things i've found so far are these.
Code:
<script>
function changeScreenSize(w,h)
{
window.resizeTo( w,h );
document.body.style.overflow='hidden';
window.menubar=no;

}
</script>
These two code's resize my window and hide my scrollbar, but i want more.

I want to be able to ...
1. Hide the complete toolbar and
2. Hide the statusbar.

I've searched google to death but stilll can't find any info anywhere where i can just put the code in my head tag.