

function movepic(img_name,img_src) {
document[img_name].src=img_src;
}

function movepic2(el_id,img_src) {
  var but = document.getElementById(el_id);
      but.src=img_src;
}



