addNamespace("UserFAQ");
UserFAQ.Ajax_class = Class.create();
UserFAQ.Ajax_class.prototype = (new AjaxPro.Request()).extend({
	CheckUserLogin: function(FType, callback) {
		return this.invoke("CheckUserLogin", {"FType":FType}, callback);
	},
	SendFAQ: function(FType, FTitle, FContent, callback) {
		return this.invoke("SendFAQ", {"FType":FType, "FTitle":FTitle, "FContent":FContent}, callback);
	},
	SendFAQ1: function(FType, FTitle, FContent, FTitle2, FTitle3, FDetailType, callback) {
		return this.invoke("SendFAQ1", {"FType":FType, "FTitle":FTitle, "FContent":FContent, "FTitle2":FTitle2, "FTitle3":FTitle3, "FDetailType":FDetailType}, callback);
	},
	ShowPJWindow: function(toolid, auid, callback) {
		return this.invoke("ShowPJWindow", {"toolid":toolid, "auid":auid}, callback);
	},
	initialize: function() {
		this.url = "/UserFAQ/ajaxpro/UserFAQ.Ajax,UserFAQ.ashx";
	}
})
UserFAQ.Ajax = new UserFAQ.Ajax_class();

