thanks, works great. next silly question. Can i use java script to make the new window popup in a browser size of my choice using this? Also, is this secure if i use it in my secure pages.
last are any outside hyperlinks good to have on my secure pages.
any help would be appreciated.
<script type="text/javascript">
function showPopup(url) {
newwindow=window.open(url,'name','height=190,width=520,top=200,left=300,resizabl e');
if (window.focus) {newwindow.focus()}
}
</script>
Then you code your link like that:
<a href='...' onClick='showPopup(this.href);return(false);'>Info</a>
When javascript is disabled, the link still works the normal way.
Bookmarks