Below is the script I am using for a bookmark. The only problem is in Mozilla Firefox and Netscape it adds the bookmark as a sidebar. Is there anyway to change this so that they open like a regular webpage not like a sidebar?
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}