function updateProductImage(imgName, imgSrc){

	var image =	document.getElementById(imgName);
	
	image.src = imgSrc;
}
