// JavaScript Document
<!--
function viewImg(){
d = document.getElementById('panels');
var img = d.options[d.selectedIndex].value;
var title = d.options[d.selectedIndex].text;
LightboxDelegate(img,title)
}

function LightboxDelegate(img,title) {
   title += "<br><span class=\"overlayCaption\">Use the mouse wheel or vertical scrollbar to view this layout</span>"
   url = "images/modules/" + img;
   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','lightbox');
   objLink.setAttribute('title',title);
   Lightbox.prototype.start(objLink);
}
-->