protected boolean evaluateExpression(String expr)
{
// The following line doesn't work because of a bug in MyFaces
//return (Boolean) Expressions.instance().createValueBinding(expr).getValue();
return (Boolean) new UnifiedELValueBinding(expr).getValue( FacesContext.getCurrentInstance() );
}