Popup Window by eckert
Here is the easy code to have a link open a popup window.
<a href="http://www.yourdomain.com" onclick="window.open(this.href, '_blank', 'toolbar=no,location=yes,directories=yes,resizable=yes,scrollbars=yes,width=600,height=400'); return false;">Link to Popup</a>
That’s it, just change the href to wherever you want the link to go and feel free to modify any of the listed variables like toolbar, width, height, etc…