<!--   
var popWin = null    
var winCount = 0 
var winName = "popWin" 

function openPopWin(winURL, winWidth, winHeight, winFeatures, winLeft, winTop){ 
  var d_winLeft = 0  
  var d_winTop = 0   
  winName = "popWin" + winCount++  
  closePopWin()           
  if (openPopWin.arguments.length >= 4)    
    winFeatures = "," + winFeatures 
  else  
    winFeatures = ""  
  if (openPopWin.arguments.length == 6)   
    winFeatures += getLocation(winWidth, winHeight, winLeft, winTop) 
  else 
    winFeatures += getLocation(winWidth, winHeight, d_winLeft, d_winTop) 
  popWin = window.open(winURL, winName, "width=" + winWidth  
           + ",height=" + winHeight + winFeatures) 
  } 

function closePopWin(){     
  if (navigator.appName != "Microsoft Internet Explorer"  
      || parseInt(navigator.appVersion) >=4)  
    if(popWin != null) if(!popWin.closed) popWin.close()  
  } 

function getLocation(winWidth, winHeight, winLeft, winTop){ 
  return "" 
  } 
  
function popup(page) {
	window.open(page,'popup','width=400,height=280,toolbar=no,scrollbars=yes');
}
 
function open_close( id ) {
	var element = document.getElementById( id ) || document.all[ id ];		
	if ( element ) {
		if( element.style.display == 'block' ) {
			element.style.display = 'none';
		} else {
			element.style.display = 'block';
		}
	}
}

function getLocation(winWidth, winHeight, winLeft, winTop){ 
  var winLocation = "" 
  if (winLeft < 0) 
    winLeft = screen.width - winWidth + winLeft 
  if (winTop < 0) 
    winTop = screen.height - winHeight + winTop 
  if (winTop == "cen") 
    winTop = (screen.height - winHeight)/2 - 20 
  if (winLeft == "cen") 
    winLeft = (screen.width - winWidth)/2 
  if (winLeft>0 & winTop>0) 
    winLocation =  ",screenX=" + winLeft + ",left=" + winLeft     
                + ",screenY=" + winTop + ",top=" + winTop 
  else 
    winLocation = "" 
  return winLocation 
  } 

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

function Email(contact,name,domain,aro) {
	var name0=name; 
	var domain0=domain; 
	var aro0=aro; 
	document.write('<a href=\"mail' + 'to:' + name0 + aro0 + domain0 + '\">'); 
	document.write(contact + '</a>');
}

function toggleInfo(id){
	var el = document.getElementById(id);
	if (el.style.display == 'none'){
		el.style.display = '';
		var toggle = document.getElementById('toggle' + id);
		toggle.innerHTML = 'Masquer';
	} else {
		el.style.display = 'none';
		var toggle = document.getElementById('toggle' + id);
		toggle.innerHTML = 'Afficher';
	}
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
