function showStartedContestsPage(page, locId) {

	var myAjax = new Ajax.Updater("contrix_list_started_ajx", '/ajax', {
		asynchronous: false,
		evalScripts:  true,
		method: 'get',
		parameters: {jsp: "contrixListStartedAjx", page: page, locId: locId},
		onComplete: 
			function(transport) {
			
				checkAjxResponse(transport);
			
			}
		}
	);
}

function showAnnouncedContestsPage(page) {

	var myAjax = new Ajax.Updater("contrix_list_announced_ajx", '/ajax', {
		asynchronous: false,
		evalScripts:  true,
		method: 'get',
		parameters: {jsp: "contrixListAnnouncedAjx", page: page},
		onComplete: 
			function(transport) {
			
				checkAjxResponse(transport);
			
			}
		}
	);
}

function showEndedContestsPage(page, locId) {

	var myAjax = new Ajax.Updater("contrix_list_ended_ajx", '/ajax', {
		asynchronous: false,
		evalScripts:  true,
		method: 'get',
		parameters: {jsp: "contrixListEndedAjx", page: page, locId: locId},
		onComplete: 
			function(transport) {
			
				checkAjxResponse(transport);
			
			}
		}
	);
}