function mListSort(listTable, url) {

	new Ajax.Updater(listTable, url, {evalScripts:1});

	return false;
}


function mListGotoPage(listTable, url) {

	new Ajax.Updater(listTable, url, {evalScripts:1});

	return false;
}

function mListUpdate( listTable, url){

	new Ajax.Updater(listTable, url, {evalScripts:1});

	return false;
}

function listPager( updateBlock, url, requestPath, loadingString ){

        if( loadingString.length > 0 )
	{
           updateBlockNode = $( updateBlock );
	   updateBlockNode.innerHTML = '<div align=\"center\" style=\"clear: both; margin-bottom: 100px;margin-top: 100px;\"><img src="' + loadingString +'" border="0" style="margin-top: 100px;></div>';
	}
	   
        new Ajax.Updater( updateBlock, url, 
	                                  {
					    method: "post",
					    postBody: requestPath,
					    evalScripts:1
					  }
			);

}