function getPage(url) {
	$('#loadingpage').show();
	if(url.replace(/&/g, '&amp;')=='?application=cvisuel&amp;controller=general&amp;action=clients&amp;gloverendermode=ajaxreturn') {
		document.location.href ='https://www.cvisuel.net/clients.html';
	}

	$('#Content').load('/index.php'+url, function() {
		$('#loadingpage').hide();
	});
	return;
}