Im using the following code to open a popup window. I specify location=no, but the popup is still showing the address in the address bar. Any suggestions? <script type="text/javascript"> function newPopup(url) { popupWindow = window.open( url,'popUpWindow','height=475,width=700,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=no') } </script> <a href="JavaScript:newPopup('http://mylink.com);">Logging In</a> Code (markup):