function imageSwap(tagId, imageName)
{
	if (document.getElementById)
	{
		document.getElementById(tagId).setAttribute("src", imageName);
	}
}