More specifically, try substituting this:
Code:
function popuplinkfunc(imgsrc){
if (popupsetting[0]==1){
var desc=imgsrc.href.replace(/^.*\/([^\.]+)\..*/,'$1');
var popwin=open('', "popwin", popupsetting[1]);
popwin.document.write('<title>'+desc+
'<\/title><body style="margin:0;padding:0;font:85% sans-serif;text-align:'+
'center;overflow:auto;background-color:#0d576d;color:white;"><img title="'+
desc+'" alt="Larger Image" style="margin:2px 0;" src="'+imgsrc.href+'"><br>'+desc);
popwin.document.close();
popwin.focus();
return false;
}
else
return true;
}
for the existing popuplinkfunc(imgsrc) function.
Bookmarks