It really depends on how you want the new page window to look. A simple call to target the url would suffice, then use this:
Code:
<a href="full url to target goes here" target="_blank">Text Label Here</a>
Or, if you want it as a popup then you would need to define the window size and properties with a javascript routine call like this:
Code:
<script type="text/javascript">
<!--
function OpenWindow(){
Window = window.open('url link goes here','Window','directories=no,height=500,width=600,location=no,menubar=no,resizable=no,status=no,toolbar=no')
return false;
}
-->
</script>
<a href="#" onclick="return OpenWindow()">Link Text goes Here</a>
With this method you can specify the size of the new window, and if you want status bar, toolbars, etc