Code:
onClick="return popuplinkfunc(this)">
is this a newly added feature? 
<edit>
anyway, add this
Code:
function popuplinkfunc(imgsrc){
if (popupsetting[0]==1){
var popwin=open("pop.htm?"+imgsrc.href, "", popupsetting[1])
popwin.focus()
return false
}
else
return true
}
within the
Code:
<script type="text/javascript">
/***********************************************
* Photo Album script- ? Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
// more lines of code
</script>
and change the
Code:
var popupsetting=[1, "width=200px, height=200px, scrollbars, resizable"]
with
Code:
var popupsetting=[1, "resizable=1,HEIGHT=200,WIDTH=200, scrollbars=1"]
untried but should work theoretically
Bookmarks