if(typeof BuildMySurvey == "undefined") BuildMySurvey={};
BuildMySurvey.surveys_class = function() {};
Object.extend(BuildMySurvey.surveys_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CommentList: function(surveyID) {
		return this.invoke("CommentList", {"surveyID":surveyID}, this.CommentList.getArguments().slice(1));
	},
	SaveComment: function(surveyID, Comment) {
		return this.invoke("SaveComment", {"surveyID":surveyID, "Comment":Comment}, this.SaveComment.getArguments().slice(2));
	},
	url: '/ajaxpro/BuildMySurvey.surveys,BuildMySurvey.ashx'
}));
BuildMySurvey.surveys = new BuildMySurvey.surveys_class();

