		
function Season(listener) {
	this.__pajax_object_id = "2c21088ce2dfa398e7b0938db912f97a" + __pajax_get_next_id();
	this.__pajax_listener = listener;
}

function SeasonListener() { };
SeasonListener.prototype = new PajaxListener();				

SeasonListener.prototype.onSelectSeason=function(result) {};

Season.prototype.selectSeason = function() {
	if (arguments.length > 0 && typeof arguments[0] != 'undefined' ) {
		params = new Array();
		for (var i = 0; i < arguments.length; i++) {
			params[i] = arguments[i];
		}
	} else {
		params = null;
	}
	
	return new PajaxConnection("/php/ajax/pajax_call_dispatcher.php").remoteCall(this.__pajax_object_id, "Season", "selectSeason", params, this.__pajax_listener);
}
	

