<!--
	function changeImage(buttonName, filename)
	{
		obj = eval('document.' + buttonName);
		obj.src = filename;
	}

	function setFocus(component)
	{
		obj = eval('document.' + component);
		obj.focus();
	}
-->