You're mixing up server side and client side. To open up a new window, you should use a CLIENT side language, like JavaScript. In JavaScript, this would be:
<SCRIPT>
newWindow = window.open("http://www.phpbuilder.com/", "_BLANK", "width=500,height=300");
</SCRIPT>
or something similar to that. Hope this is of some help 😉