function SetGaugeValue(obj, newValue)
{
	obj.needle.setValue(newValue);

	if (obj.value)
	{
		obj.value.setText(newValue + "%");
	}
}