function showPic2 (whichpic,whattitle,whatlink) {
	var target, target2;
	
	
	if (document.images.large_pic)
		target=document.images.large_pic;
	if (document.all && document.getElementById("large_pic"))
		target=document.getElementById("large_pic");
		
	//target.height = 216;
	target.width = 289;
	target.src = whichpic;
	
	
	//if (document.photoGalleryCaption)
	//	target2=document.photoGalleryCaption;
	//if (document.all && document.getElementById("photoGalleryCaption"))
	target2=document.getElementById("PhotoCaption");
	
	if (whatlink != '') {
    target2.innerHTML = "" + whattitle + "<br /><a href='" + whatlink +"'>More Information</a>";
    //target2=document.getElementById("large_pic_link");
    //target2.href = whatlink;
  } else {
    target2.innerHTML = "" + whattitle + "";
  	//making linkon big image point to new image
  	document.getElementById("large_pic_link").href=whichpic;
  }
  
}
