﻿function setimg(id, img1, img2) 
{
  var ctrl = document.getElementById(id);
  ctrl.src = img1;
  ctrl.alt = img2;
	
	return img2;
}
