	function manipulateButton(objButton,strButtonName,strButtonFunc)
	{
		if (strButtonFunc == "On")
		{
			objButton.src = eval("img" + strButtonName + "On.src");
		}
		else
		{
			objButton.src = eval("img" + strButtonName + ".src");
		}
	}

