Hey CryingWolf,
You could try this:
Code:
<script>
function openThumb(pic){
newWin=window.open('','newWin2','status,scrollbars,fullscreen,top=0,left=0,screenY=0,screenX=0,width='+screen.width+',height='+screen.height);
newWin.document.open();
newWin.document.write('<html><body><div align="center" valign="center" style="text-align:center;vertical-align:middle"><center><img src="'+pic+'"></center><br><br><center><a href="javascript:self.close()"><font face="Arial">Close this window</font></a></center></div></body></html>');
newWin.document.close();
}
</script>
Then, to call it, you just go:
<a href="javascript
penThumb('somePic.gif')">
and somePic.gif would be the name of the big pic you want to open in that window.
aDog
Bookmarks