if(typeof craftphil == "undefined") craftphil={};
if(typeof craftphil.WWW == "undefined") craftphil.WWW={};
if(typeof craftphil.WWW.UC == "undefined") craftphil.WWW.UC={};
craftphil.WWW.UC.guestBook_class = function() {};
Object.extend(craftphil.WWW.UC.guestBook_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddGuestBook: function(name, sex, email, body, isPublic) {
		return this.invoke("AddGuestBook", {"name":name, "sex":sex, "email":email, "body":body, "isPublic":isPublic}, this.AddGuestBook.getArguments().slice(5));
	},
	url: '/ajaxpro/craftphil.WWW.UC.guestBook,craftphil.WWW.ashx'
}));
craftphil.WWW.UC.guestBook = new craftphil.WWW.UC.guestBook_class();

