OK, there is a post about hiding source code, and it shows how nothing can hide your source code, certain things will deter people but not stop the people. And what's the point of hiding the address bar, you can right click anywhere on the page and goto properties, and it will show the web address, and if you right-click you can goto show source. Also web pages are cached, so you can always access them from Temporary Internet Files. You may be thinking now, how do I disable right-clciking? Don't even bother thinking about it, all you have to do is turn off Javascript and your no right click script will be ignored. This subject has been done to death.
But here is the code for a popup window that doesn't display any of the bars (you can modify it freely):
<SCRIPT LANGUAGE="Javascript">
function popUP()
{
window.open("popup.html","Pop-Up","toolbar=no,location=no,directories=no,status=no," + "menubar=no,scrollbars=yes,resizable=yes," + "width=300,height=300,screenX=0,screenY=0"

}
</SCRIPT>
Now to call the function from a button:
<FORM>
<INPUT TYPE="BUTTON" NAME="POPUP WINDOW" VALUE="CLICK HERE" onClick="popUP">
</FORM>
Hope this helps!
"Quest for the Cup - 2002!"