That stopped working the moment you removed this from the script:
Code:
var objBottomNavCloseLink = document.createElement("a");
objBottomNavCloseLink.setAttribute('id','bottomNavClose');
objBottomNavCloseLink.setAttribute('href','#');
objBottomNavCloseLink.onclick = function() { myLightbox.end(); return false; }
objBottomNav.appendChild(objBottomNavCloseLink);
var objBottomNavCloseImage = document.createElement("img");
objBottomNavCloseImage.setAttribute('src', fileBottomNavCloseImage);
objBottomNavCloseLink.appendChild(objBottomNavCloseImage);
You could follow the advice I added (perhaps too late to be noticed) at the end of my last post (this would probably be easiest), or (just to give you a better idea of what has happened) you could remove:
Code:
<a id='bottomNavClose' href='#'><img src='images/closelabel.gif'/></a>
from your long line. and replace the missing code from above after it.
Bookmarks