Sure, both requests are pretty easy to implement. Firstly, use the attached thumnailviewer2.js file instead of the original one. Then, where as before you would define just a single DIV to house the enlarged images, for example:
Code:
<div id="loadarea" style="width: 600px"></div>
Now, add to that another DIV on your page in the form:
Code:
<div id="loadarea-title" style="width: 600px"></div>
In order words, suffix the original DIV id with "-title". This DIV will be used to display the title of the image.
Regarding the popup window bit, this is controlled by this line inside the .js file:
Code:
window.open(this.href, "", "width=500px, height=500px")
You may want to edit the window attributes based on what's available (see bottom of this page).
Bookmarks