function changeImage ( imgTagId, imageUrl ) {
	
	var imgTagElement = document.getElementById(imgTagId);
	imgTagElement.src = imageUrl;
	
}