function changePage(url) 
{
	$.ajax({ 
  type: "GET", 
  url: url, 
  success: function(msg){ 
		$("#partiecentre").html(msg);
  } 
});
}