function replaceImg(path,desc) {
     var imgDest = document.getElementById('image');
    var imgSrc = path;
    imgDest.setAttribute("src", imgSrc);
	document.getElementById('description').textContent = desc;
    }
