if (typeof ItemBean != "function") { var ItemBean = function() { this.value = null; this.name = null; } } if (typeof FieldBean != "function") { var FieldBean = function() { this.filled = false; this.value = null; this.required = false; this.message = null; this.valid = false; this.name = null; } } // Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (UserForm == null) var UserForm = {}; UserForm._path = '/registrationform/dwr'; UserForm.validateUFormRegistration = function(p0, callback) { dwr.engine._execute(UserForm._path, 'UserForm', 'validateUFormRegistration', p0, callback); } UserForm.getUFormData = function(p0, callback) { dwr.engine._execute(UserForm._path, 'UserForm', 'getUFormData', p0, callback); } UserForm.registrate = function(p0, callback) { dwr.engine._execute(UserForm._path, 'UserForm', 'registrate', p0, callback); }