function pm_showPhoto(inPhotoUrl, inPhotoCaptionString, inPhotoDescriptionString)
{
	document.images.photo_placeholder.src = inPhotoUrl;

	photoCaptionId = "photo_picture_caption";
	if (document.getElementById)
	{
		photoCaption = document.getElementById(photoCaptionId);
		photoCaption.innerHTML = inPhotoCaptionString;
	}
	photoDescriptionId = "photo_picture_description";
	if (document.getElementById)
	{
		photoDescription = document.getElementById(photoDescriptionId);
		photoDescription.innerHTML = inPhotoDescriptionString;
	}
}