// JavaScript Document
function changeImage(imgName, imgSrc)
{
	document[imgName].src = imgSrc;
	return true;
}