Craig:
First, thanks for posting an original question!
There are several ways of doing this, and here are two methods I have used:
[head]<script>
function open_window1(url) {
mywin = window.open(url,"*window title*",'toolbar=0,location=0,directories=0,status =yes,menubar=0,scrollbars=1,resizable=0,width=270, height=600,top=30,left=5');
}
</script>
[/head]
Code:
<a href="javascript:open_window('http://www.page.php'">
OR
[link]<a href="javascript
:windowHandle=window.open('http://www.page.php','*window_title*','top=*some #*,left=*some #*,width=*some #*,height=*some #*,scrollbars=no');windowHandle.focus()">
[/link]
The benefit of the first example is that all of your secondary windows will open in the same secondary window, and they will all have the same size. The benefit of the second code is that you can change your secondary window size; however, in order to make sure that happens, you will need to give each window a separate name. (Meaning that you will have multiple secondary windows... unless you do it like the
photos page here, which is under Services.)
Hope this helps!!