function imgChanger(imgId, imgName) {
        img = document.getElementById(imgId);
	img.src = imgName;
	
}
