if(typeof informations == "undefined") informations={};
informations_class = function() {};
Object.extend(informations_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetInformation: function(id) {
		return this.invoke("GetInformation", {"id":id}, this.GetInformation.getArguments().slice(1));
	},
	addContact: function(title, name, companyName, address, telephone, fax, mail, info) {
		return this.invoke("addContact", {"title":title, "name":name, "companyName":companyName, "address":address, "telephone":telephone, "fax":fax, "mail":mail, "info":info}, this.addContact.getArguments().slice(8));
	},
	addLeaveword: function(name, info) {
		return this.invoke("addLeaveword", {"name":name, "info":info}, this.addLeaveword.getArguments().slice(2));
	},
	url: '/ajaxpro/informations,App_Code.ashx'
}));
informations = new informations_class();

