﻿// JScript File
function DoImageSwap(strImageURL)
{
	var oImage=document.getElementById("mainPic1");
	if (oImage.filters)
	{
		oImage.style.filter="progid:DXImageTransform.Microsoft.Fade(duration=0)";
		oImage.filters(0).Apply();
		oImage.src=strImageURL;
		oImage.filters(0).Play();
	}
	else
	{
		oImage.src=strImageURL;
	}
}
