addNamespace("GMGManagementSystem");
GMGManagementSystem.AjaxHelper_class = Class.create();
GMGManagementSystem.AjaxHelper_class.prototype = (new AjaxPro.AjaxClass()).extend({
	foo: function(t) {
		return this.invoke("foo", {"t":t}, this.foo.getArguments().slice(1));
	},
	CustomAuthenticate: function(username, password) {
		return this.invoke("CustomAuthenticate", {"username":username, "password":password}, this.CustomAuthenticate.getArguments().slice(2));
	},
	CustomAuthenticateEncrypted: function(username, password) {
		return this.invoke("CustomAuthenticateEncrypted", {"username":username, "password":password}, this.CustomAuthenticateEncrypted.getArguments().slice(2));
	},
	SendPass: function(username) {
		return this.invoke("SendPass", {"username":username}, this.SendPass.getArguments().slice(1));
	},
	showButtons: function(id, name) {
		return this.invoke("showButtons", {"id":id, "name":name}, this.showButtons.getArguments().slice(2));
	},
	saveResolution: function(width, height) {
		return this.invoke("saveResolution", {"width":width, "height":height}, this.saveResolution.getArguments().slice(2));
	},
	initialize: function() {
		this.url = '/gmgMS/ajaxpro/GMGManagementSystem.AjaxHelper,GMGManagementSystem.ashx';
	}
});
GMGManagementSystem.AjaxHelper = new GMGManagementSystem.AjaxHelper_class();

