function SwitchImage(id, imgName){
    var elt = document.getElementById(id);
    elt.src=imgName;
}

