// Ouvrir une fenêtre popup
function OuvrirPop(url,nom,haut,Gauche,largeur,hauteur,options) {
	ouvpop=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}

// Ouvrir une fenêtre popup
function display(div1){				
		//alert('link_'+div1);
		document.getElementById('link_'+div1).className='transmission_type_active';
		document.getElementById(div1).style.display='block';
}
function hide(div1){		
		document.getElementById('link_'+div1).className='transmission_type_off';		
		document.getElementById(div1).style.display='none';
		
}



