// VOICI LES LIENS VERS LES DOCUMENTS A TRANSMETTRE
	var lien_doc_eclairage = "../transmettre/pop_eclairage.html";
	var lien_doc_compression = "../transmettre/pop_compression.html";
	var lien_doc_refrigeration = "../transmettre/pop_refrigeration.html";
	var lien_doc_pompage = "../transmettre/pop_pompage.html";
	var lien_doc_force_motrice = "../transmettre/pop_force_motrice.html";	
	var lien_doc_ventilation = "../transmettre/pop_ventilation.html";	
	var lien_doc_autres = "../transmettre/pop_autres.html";


// NE PAS MODIFIER LES FONCTIONS
	function show_vr(){
	// FAIS APPARAITRE LES LIENS VOIE ALLÉGÉE
		document.getElementById('vr_2').style.padding = '0px 0px 0px 0px';
		document.getElementById('vr_2').style.background = 'url(../images/fleche_orange.gif) no-repeat left top';
		document.getElementById('lien_vr_2').style.display = '';
		
		document.getElementById('vr_3').style.padding = '0px 0px 0px 0px';
		document.getElementById('vr_3').style.background = 'url(../images/fleche_orange.gif) no-repeat left top';
		document.getElementById('lien_vr_3').style.display = '';
	}
	function update_transmettre_link(new_path){
	// ASSIGNE LE BON LIEN
		var newLink = "javascript:openpopBase('"+eval('lien_doc_'+new_path)+"',640,525,50,50,1,0,0,0,1,1)"
		document.getElementById('lien_outil').href = newLink;
		document.getElementById('lien_document_2').href = newLink;
		document.getElementById('lien_document_3').href = newLink;
	}
	function customize_content(sectionName){
	// ASSIGNE LE LIEN ET MONTRE LES LIENS VOIE ALLÉGÉE
	// DOIT ETRE APPELLÉ DANS LE BODY AVEC LE NOM DE LA SECTION COMME PARAMETRE
		if(sectionName == 'eclairage' || sectionName == 'compression'){
			//show_vr()
		}
		update_transmettre_link(sectionName);
	}