QUOTE (THWRG @ Oct 9 2009, 06:04 PM)

I have some links on my page however when you click on them, you leave my web page. I would like for the link to open a new browser. How can I do this?
Hey THWRG...you need to add a "target" to your link declaration. Here is an example:
<p>
Visit <a href="http://www.mysite.com" target="_blank">mysite</a> now!
</p>
target="_blank" will open a new window.
Hope that helps.