Are you using the onphotoselect event handler and window.open() to get the enlarged image to open up in a new window when the thumbnail is clicked on? Something like:
Code:
thepics.onselectphoto=function(img, link){
if (link!=null) //if this image is hyperlinked
window.open(link.href, "", "width=800, height=600, status=1, resizable=1")
return false //cancel default action when clicking on image, by returning false instead of true
}
If so, why not just tweak window.open() to show the browser's menubar within the pop up window, which gives the user easy access to printing what's inside it:
Code:
thepics.onselectphoto=function(img, link){
if (link!=null) //if this image is hyperlinked
window.open(link.href, "", "width=800, height=600, status=1, resizable=1, menubar=1")
return false //cancel default action when clicking on image, by returning false instead of true
}
Bookmarks