function viewBigImg(img) {

  el = document.getElementById("img_big");

  if (el && img) {

    el.src = img;

    el.style.border = "";

  }

}

