function loadListQuestions(themeid) {
	var url = "index.php?option=com_umc_faq&view=faq&tmpl=component&";
	var options = { update : $('bloc2'), method : 'post', data : 'themeid='+themeid+'&task=listQuestions' };
	var blocList2= new Ajax(url, options);
	blocList2.request();
}
function loadQuestion(questid) {
	var url = "index.php?option=com_umc_faq&view=faq&tmpl=component&";
	var options = { update : $('bloc3'), method : 'post', data : 'questid='+questid+'&task=detailsQuestion', onSuccess:loadScroll };
	var blocList3= new Ajax(url, options);
	blocList3.request();
}