function showPic2 (whichpic,whichlink,whattitle) {
	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");

	target2.innerHTML = "" + whattitle + "";
	
	//making linkon big image point to new image
	document.getElementById("large_pic_link").href=whichlink;

}