var ClientsideFormValidatorProvider=new Class({
	Implements:[Options,Events],
	
	showError:function (event) {
		return this.validator.validate(event);
	},

	showError:function (field,errorMessage) {
		var advice=this.validator.makeAdvice(className,field,errorMessage);
		this.validator.insertAdvice(advice,field);
		this.validator.showAdvice(className,field);
	}
});
