If these are informational pages that you have control over, you can make them internal links via ezpages. This will create these pages with the information right in Zen Cart.. Your post seems to indicate that these are your informational pages.
I do not like this but if you must and especially if the link is off your site something like this can be used:
Code:
<script type="text/javascript"> function opennastypopup() { window.open("some_file.html", "", "toolbar=no,height=100,width=200"); return false; } </script> ...
enter the above script, then the code below where you want it to appear...
<a href="your_link address/some_file.html" onclick="return opennastypopup()" onkeypress="return opennastypopup()">Some_description</a>