// JavaScript Document
function changeImg(imageName) {
var myImage=document.getElementById('pic');
myImage.src=imageName;
}
