You have the images in an image directory (example):
Code:
http://www.dancewithcda.com/images/max.gif
But the script is looking for them here:
Code:
http://www.dancewithcda.com/max.gif
Either put the images in the root where the script expects to find them (easiest), or edit the popup.js script file (use a text only editor like notepad) to indicate the actual locations of the images (best if you will be using the script on various pages that are in different folders on your site):
Code:
var idlist=new Array();
idlist.btns=new Array();
idlist.btns[0]=new Image(); idlist.btns[0].src="/images/min.gif";
idlist.btns[1]=new Image(); idlist.btns[1].src="/images/max.gif";
idlist.btns[2]=new Image(); idlist.btns[2].src="/images/close.gif";
idlist.btns[3]=new Image(); idlist.btns[3].src="/images/resize.gif";
and in this long line:
Code:
titlebar.innerHTML='<span style="position:absolute; left:3px; top:1px; font:bold 10pt sans-serif; color:'+titletextcolor+'; height:18px; overflow:hidden; clip-height:16px;">'+title+'</span><span id="'+cid+'_btt" style="position:absolute; width:48px; height:16px; left:'+(tw-48)+'px; top:2px;"><img src="/images/min.gif" width="16" height="16" id="'+cid+'_min"><img src="/images/max.gif" width="16" height="16" id="'+cid+'_max"><img src="/images/close.gif" width="16" height="16" id="'+cid+'_cls"></span>';
and here:
Code:
rdiv.innerHTML='<img src="/images/resize.gif" width="7" height="7">';
Bookmarks