// JavaScript Document// ludicrous workaround to Flash player getURL situationfunction openLink(urlToOpen) { window.location.href = urlToOpen;} // use lightbox to open imagesfunction openImageLink(imageUrl) {	//window.location.href = imageUrl;var a = document.getElementById('dummyanchor');a.setAttribute('href', imageUrl);myLightbox.start(a);}