Forum Moderators: open
Thanks,
Kevin
...when someone clicks on it, the window closes and a new page loads on the site
From within the new pop-up window, javascript can address the original (parent) window as window.opener. For example, this code in the anchor tag --
<a href="#" onClick="window.opener.location='new_page.html';window.close();">link text</a>
would load close the pop-up window and load new_page.html in the original window.