Script Question Part 2

Im working on a little website and for this particular application I really dont need the IE toolbar up top. (no it’s not a popup, and I can guarentee it will only be viewed in IE)

This is the page

Keep in mind this will be going in a small frame up top so the background image will not repeat that many times. What I would like to do is get rid of the entire toolbar and use that little jpg to the right to control the navigation. How do I turn a hotspot into the back, forward, stop, refresh, and home buttons?? I know theres got to be some Javascript to do that as well as eliminate the toolbar. I have been googling but havent found the right one yet. As alway, thanks in advance!

You will have to spawn a new window to get a window to not have the toolbar. Try this.

<a onClick=“MyWindow=window.open(‘YOUR IMAGE NAME HERE’,‘MyWindow’,‘toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=YOURWIDTH,height=YOURHEIGHT,left=100,top=10’);false;”></a>

I think this should work.