function show_ml2(langue) {
	$('#box_ml').fancybox({
		'hideOnContentClick': false,
		frameWidth : 500,
		frameHeight : 500
	});

	// Définition de la langue à utiliser
	if (langue != undefined) {
		if (langue == 'en') {
			$('#box_ml').attr('href', '/ressources/ajax/mentions_legales_box_en.php?iframe');
		} else if (langue == 'nl') {
			$('#box_ml').attr('href', '/ressources/ajax/mentions_legales_box_nl.php?iframe');
		}
	} else {
		$('#box_ml').attr('href', 'include/mentions_legales_box.php?iframe');
	}

	$('#box_ml').trigger('click');
}
