function changeImage( objName, newImg )
{
	var obj = document.getElementById(objName);
	if (obj != null )
		obj.src = newImg;
}
