function showPic (whichpic) { 
  if (document.getElementById) { 
      document.getElementById('GalImageArea').src = whichpic.href; 
  if (whichpic.title) { 
      document.getElementById('GalDesc').childNodes[0].nodeValue = whichpic.title; 
} else { 
      document.getElementById('GalDesc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 
} 
      return false; 
} else { 
      return true; 
      } 
}

function clickedImage (whichpic) {
	imageUrl = whichpic.src;  // Takes URL of Medium Image
	imageUrl = imageUrl.replace(/images/gi, "images/large"); // Takes URL of Medium Image and Adds "Large/" Folder
	imageWindow = window.open('','imageWin','width=740px,height=425px,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes,left=150,top=150,screenX=150,screenY=150');  // popup the image in a new window
	imageWindow.document.write('<html><head><title>Gallery</title>');
	imageWindow.document.write('<link rel=stylesheet type=text/css href=../../global/css/default.css title=default>');
	imageWindow.document.write('</head><body class=PopPage>');
	imageWindow.document.write("<p valign=middle onClick='javascript:window.close()'><img src='"+imageUrl+"' border=0 title=Click&nbsp;to&nbsp;Close></p>")
	imageWindow.document.write('</body></html>');
	var tmp = imageWindow.document;
	tmp.close();
}