function imageSwap(img_id, img_name)
{
	var e = document.getElementById(img_id);
	if(e) {
		e.src = img_name;
	}
}
