function displayData(pLabel, pContent, pPDF){
	$("#texteLarge").empty().append("<h1>" + pLabel + "</h1>");
	
	$("#texteLarge *:not(h1)").remove();
	$("#texteLarge").append(pContent);
	
	$("#pdf").show();
	$("#pdf a").attr("href", pPDF);
}