  //Popup PopNewsletter
  function PopNewsletter(Dossier, Email)
  {
    var haut=(screen.height-420)/2;
    var gauche=(screen.width-468)/2;
    popnewsletter=window.open(Dossier+'pop-newsletter.php?Email='+Email+'','popnewsletter','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=468, height=420');
    if (popnewsletter.blur) popnewsletter.focus();
  }
  
  //Popup PopWebradio
  function PopWebradio()
  {
    var haut=(screen.height-104)/2;
    var gauche=(screen.width-398)/2;
    popwebradio=window.open('webradio_sc/index.php','popwebradio','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=398, height=104');
    if (popwebradio.blur) popwebradio.focus();
  }
    
  /***************************************************************************/
  // Affichage/Disparition d'un DIV
  /***************************************************************************/
  
  function ShowHideActu(DivId)
  {
	targetElement1 = document.getElementById('ActuDev-'+DivId);
	targetElement2 = document.getElementById('ActuShrink-'+DivId);
	targetElement3 = document.getElementById('ActuContent-'+DivId);
	
	if(targetElement1.style.display == ""){
		targetElement1.style.display = "none";
		targetElement2.style.display = "";
		targetElement3.style.display = "";
	}
	else{
		targetElement1.style.display = "";
		targetElement2.style.display = "none";
		targetElement3.style.display = "none";
	}
  }
  
  
  /***************************************************************************/
  // RollOvers menu
  /***************************************************************************/
  
  function swap_img(state, id) {
	  
	  document.getElementById('menu'+id).src = 'images/index/navig_0'+id+'-'+state+'.gif';
  }
  
  function swap_menu(id) {
	  
	targetElement1 = document.getElementById('menudev2');
	targetElement2 = document.getElementById('menudev3');
	targetElement3 = document.getElementById('menudev4');
	
	if(id == 2){
		targetElement1.style.display = "";
		targetElement2.style.display = "none";
		targetElement3.style.display = "none";
	}
	else if(id == 3){
		targetElement1.style.display = "none";
		targetElement2.style.display = "";
		targetElement3.style.display = "none";
	}
	else if(id == 4){
		targetElement1.style.display = "none";
		targetElement2.style.display = "none";
		targetElement3.style.display = "";
	}
	else if(id == 5 || id == 6){
		targetElement1.style.display = "none";
		targetElement2.style.display = "none";
		targetElement3.style.display = "none";
	}
  }
