
function show(id) {
	var ex = "extrait".concat(id);
	var plus = "plus".concat(id);
	var minus = "minus".concat(id);

	document.getElementById(ex).style.display = 'block';
	document.getElementById(plus).style.display = 'none';
	document.getElementById(minus).style.display = 'inline';


}

function hide(id) {
	document.getElementById("minus".concat(id)).style.display = 'none';
	document.getElementById("plus".concat(id)).style.display = 'inline';
	document.getElementById("extrait".concat(id)).style.display = 'none';
}


