function MCSimpleSearch(){
	var postedData = $J("#frm_recherche").serialize();

	$J.postJSON(ACTION_URL.performSearch, postedData, function(data) {
		updateHtmlContents(data);
		calculateRight();
	}, searchErrorCallBack);
}

function MCSimpleSearchQr(){
	var postedData = $J("#frm_rechercheQR").serialize();

	$J.postJSON(ACTION_URL.performSearch, postedData, function(data) {
		updateHtmlContents(data);
		calculateRight();
	}, searchErrorCallBack);
}


function locChangeNbResult(nbResult){

	$J.postJSON(ACTION_URL.changeNbResult, {nbResult : nbResult}, function(data) {
		updateHtmlContents(data);
	}, searchErrorCallBack);
}
