Html question

i didnt know where to post this so move it if need be…

What is the html code that i put on a page so whenever it loads it automatically resizes and removes the scroll bars, the status bar, and all the toolbars

hmm. make a pop up and have it just empty with no toolbars. and make it the same size as a browser. just 800 by 600:P

thats what im asking how do i do that…

put sth like the following in yr <head>…

<script language=“javascript”>
//<!–
function WinOpen1(filename) {
window.open(filename,‘preview’,‘toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=no,width=800,height=600’);
};
//–>
</script>

…and launch it with: <a href=“javascript:WinOpen1(‘yourpopuppage.html’);”

sth like this in the head:

function WinOpen1(filename) {
window.open(filename,‘preview’,‘toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=no,width=800,height=600’);
};

launched by a href=“javascript:WinOpen1(‘popup2.htm’);” in the link…