If you are looking for creating a new browser (popup) window then you need JavaScript.
Code:
window.open("http://www.dynamicdrive.com/","my_window_name","height=300,width=500,menubar=no,location=yes,resizable=yes,scrollbars=yes,status=yes");
if you look at the open function you can see that 3 parameters are passing into the function
1. The url which you want to open.
2. New window name
3. Window configuration values (optional)
For more details about the configuration items you can visit the following
http://developer.mozilla.org/en/docs/DOM:window.open
Probable Solution
Code:
<a href="#" onclick="javascript: loadPage('stormnews.php');"><img src="images/read3.jpg" border="0" /></a>
<script type="text/javascript">
function loadPage(url){ window.open(url,"my_window","height=300,width=500,menubar=no,location=yes,resizable=yes,scrollbars=yes,status=yes");
}
</script>
You can change the window configuration parameter based on your requirement.
Bookmarks