// JavaScript Document

function slideshows() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("slideshowPopup")) {
      links[i].onclick = function() {
        window.open(this.href, "Slideshow", "width=650,height=430,menubar=0,scrollbars=0");
        return false;
      }
    }
	}
}
window.onload = slideshows;
	
