function photoGallery(largePicName, imageLocation, titleCaption, captionText)
{
	if (document.all)
	{
		document.getElementById(largePicName).style.filter="blendTrans(duration=1)";//IE transition
		document.getElementById(largePicName).filters.blendTrans.Apply();//IE transition
	}
	document.getElementById(largePicName).src = imageLocation;
	
	if (document.all)
		document.getElementById(largePicName).filters.blendTrans.Play();
	document.getElementById(titleCaption).innerHTML = captionText;
}

function washImage(originalId, fadeImageLocation)
{
	if (document.all)
	{
		document.getElementById(originalId).style.filter="blendTran(duration=1)";
		document.getElementById(originalId).filters.blendTrans.Apply();
	}
	document.getElementById(originalId).src = fadeImageLocation;
	
	if (document.all)
		document.getElementById(originalId).filters.blendTrans.Play();
}

function oriCaption(id, original)
{
	document.getElementById(id).innerHTML = original;
}

