﻿// Set image 
function setimage(idtochange, imgagetoshow)
{
	if (document.getElementById(idtochange) != null)
	{
		document.getElementById(idtochange).src = imgagetoshow;
	}
	
}
