var ComposureForm = {
	EnableInputRow: function(rowId, inputId, isEnabled)
	{
		var row = document.getElementById(rowId);
		var input  = document.getElementById(inputId);
		
		if (row)
		{
			if (isEnabled)
				row.className = "InputRow";
			else
				row.className = "InputRow Disabled";
		}
		
		if (input)
			input.disabled = !isEnabled;
	}
}
