DefaultPage_class = function() {};
Object.extend(DefaultPage_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	StopPlay: function(score) {
		return this.invoke("StopPlay", {"score":score}, this.StopPlay.getArguments().slice(1));
	},
	SendPlayer: function(nick, score) {
		return this.invoke("SendPlayer", {"nick":nick, "score":score}, this.SendPlayer.getArguments().slice(2));
	},
	GetCurrentHighscore: function() {
		return this.invoke("GetCurrentHighscore", {}, this.GetCurrentHighscore.getArguments().slice(0));
	},
	GetHighscoreList: function(nick) {
		return this.invoke("GetHighscoreList", {"nick":nick}, this.GetHighscoreList.getArguments().slice(1));
	},
	SaveEmail: function(email) {
		return this.invoke("SaveEmail", {"email":email}, this.SaveEmail.getArguments().slice(1));
	},
	url: '/ajaxpro/DefaultPage,App_Web_s6o_wkxz.ashx'
}));
DefaultPage = new DefaultPage_class();


