﻿function swapimg(img_name, img_src, img_alt)
{
  document[img_name].src = img_src;
  document[img_name].alt = img_alt;
}