Actually, the target should be listed as target="_blank" this will force a new window.
You can further specify the size of the new window as shown below:
<script language="JavaScript">
<!--
function openWin( windowURL, windowName, windowFeatures ) {
return window.open( windowURL, windowName, windowFeatures ) ;
}
// -->
</script>
This script should be placed between your head tags - on the link it would look like below:
<a href="JavaScript: newWindow = openWin( 'pagename.html', '1', 'width=610,height=680,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0' ); newWindow.focus()"><img src="your picture.gif or jpg" width=107 height=14 alt="" border="0"></a>
in the anchor tag, the pagename.html would be the name of your html page with the larger image in it (i.e., picture1.html) and the <img src="your picture.gif or jpg> would be changed with your picture name. The remainder of the code in the anchor tag sizes the popup window.
Hope this helps [sig][/sig]