Disabing a toobar in Navigator

My question is regarding your post about disabling a toolbar in Navigator. Did you mean that it's possible in an existing window or the new one? If existing - do you have the JavaScript code that does it?
If

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

seems based on my research on the Microsoft Developer Network (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/dhtml_reference_entry.asp ) and my personal testing that the feature is not implemented in Internet Explorer for the current window.

In Netscape/Mozilla, since JavaScript 1.2 you can use the following code to disable the location bar in an existing window:

 window.locationbar.visible=true; As you most likely know, you can do this in most any browser when opening a new window in JavaScript as shown below:  window.open('http://www.libertastechnologies.com?, '', 'toolbar=no'); 

This was first published in May 2002