// JavaScript Document

/*
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function prepareGalleryLinks() {
	var myContent = document.getElementById("content");
	var myLinks = myContent.getElementsByTagName("a");
	
	var links = myContent.getElementsByTagName("a");
	for (var i=0; i<links.length; i++) {
		if ((links[i].className == "galleryLink")||(links[i].className == "popupLink")) {
			links[i].onclick = function() {

				MM_openBrWindow(this.getAttribute("href"), 'galleryPopup', 'left=10,top=10,toolbar=no,status=yes,menubar=no');
				return false;
			}
		}
	}

}
*/

/*
window.onload = function() {
	prepareGalleryLinks();	
}
// commented out for lightbox to rowk properly.
*/
