function displayOnglet(num) {

	//masque tous les autres
	for(i=1; i<6; i++) {
		document.getElementById("rds_onglet"+i).style.display = 'none';	
		idImg = 'rds_img' + i;
		pathImg = '../Images/imagesv2/droit-travail/rds_onglet' + i +'_off.jpg'
		document.images[idImg].src = pathImg;		
	}

	document.getElementById("rds_onglet"+num).style.display = 'block';

	idImg = 'rds_img' + num;
	pathImg = '../Images/imagesv2/droit-travail/rds_onglet' + num +'_on.jpg'
	document.images[idImg].src = pathImg;
	
}

function displayBlocProspect(id) {
	if(document.getElementById("bloc_"+id).style.display == 'none')
		document.getElementById("bloc_"+id).style.display = 'block';
	else
		document.getElementById("bloc_"+id).style.display = 'none';
}
