Ewww Dreamweaver. That being said, here is the code that works for me. I find it very nice and simple.
<head><script language="JavaScript"> <!--function FUNCTION1(){window.open('WEBPAGEADDRESS.html','mywindow','width=500,height=500,toolbar=no,menubar=no,scrollbars=no,resizable=no');}//--> </script></head><body><a href="javascript:FUNCTION1()">TEXT</a></body>
You can replace WEBPAGEADDRESS with any webpage. (main.html, index.html, https://www.google.de/?gfe_rd=cr&ei=7AkjVIatDsKH8QfNkoC4DQ&gws_rd=ssl) If you had wanted two links on the page then your code would look like this. <head><script language="JavaScript"> <!--function FUNCTION1(){window.open('WEBPAGEADDRESS.html','mywindow','width=500,height=500,toolbar=no,menubar=no,scrollbars=no,resizable=no');}//--> <!--function FUNCTION2(){window.open('WEBPAGEADDRESS.html','mywindow','width=500,height=500,toolbar=no,menubar=no,scrollbars=no,resizable=no');}//--> </script></head><body><a href="javascript:FUNCTION1()">TEXT</a><a href="javascript:FUNCTION2()">TEXT</a></body>
Hope thats clear.