function IF_swapImage( imgId, newImgPath )
{
	var theImg = document.getElementById( imgId );
	if ( theImg )
	{
		theImg.src = newImgPath;
	}
}
