ScheduleSearchRuntime = function(defaultSearchString, 
						  defaultEpisodeBroadcastId, 
						  defaultStartDate, 
						  defaultEndDate,
						  defaultSortBy,
						  defaultPageNumber,
						  defaultPerPage,
						  defaultChannel)
{
	this._ajaxLoaded = false;
	this.requestCounter = 0;
	this.populate(
		defaultSearchString, 
		defaultEpisodeBroadcastId, 
		defaultStartDate, 
		defaultEndDate,
		defaultSortBy,
		defaultPageNumber,
		defaultPerPage,
		defaultChannel
	);
}   

ScheduleSearchRuntime.prototype.populate = function(defaultSearchString, 
						  defaultEpisodeBroadcastId, 
						  defaultStartDate, 
						  defaultEndDate,
						  defaultSortBy,
						  defaultPageNumber,
						  defaultPerPage,
						  defaultChannel)
{
	this.searchString = defaultSearchString;
	this.episodeBroadcastId = defaultEpisodeBroadcastId; 
	this.startDate = defaultStartDate; 
	this.endDate = defaultEndDate;
	this.sortBy = defaultSortBy;
    this.pageNumber = defaultPageNumber;
    this.perPage = defaultPerPage;
	this.channel = defaultChannel
}
