Opening page in new window

Apparently, a book is not something that can be used to have a nice book shelfJ and show off to visitors.

Today I'm reading the book from Todd C. Bleeker, Developer's Guide to WSS 3.0, and I found a way to open pages in a new window when clicking on a link in the Quick Launch.

If you click on a link in the Quick Launch,by default, your page will open up in the same window because the Microsoft guys didn't foresee a checkbox "open in a new window". You could fix this by opening SharePoint Designer but Todd has another solution. Add JavaScript in the URL Box

JavaScript:window.open("http://www.u2u.info/blogs/kevin", "_blank");history.go(0);

Thanks Todd