function openPopUp(sPage, nomPage, nLargeur, nHauteur, scrollResize){
	var wdwChoix = window.open(sPage,null,'WIDTH=' + nLargeur + ',HEIGHT=' + nHauteur + ',' + scrollResize);
	wdwChoix.focus();
	wdwChoixClosed = false;
}

function displayDateCoEmp(thisObj, thisEvent) {

  var zoneCoEmp1=document.getElementById('zoneCoEmp1');
  var zoneCoEmp2=document.getElementById('zoneCoEmp2');
  var zoneCoEmp3=document.getElementById('zoneCoEmp3');
 
	//alert(thisObj.value);
	 if(thisObj!=null && thisObj.value=='UNE_PERSONNE'){
	
	  if(zoneCoEmp1!=null){
		  zoneCoEmp1.style.display='none';
	  }
	  if(zoneCoEmp2!=null){
		  zoneCoEmp2.style.display='none';
	  }
	  if(zoneCoEmp3!=null){
		  zoneCoEmp3.style.display='none';
	  }
	 }
	 else if(thisObj!=null && thisObj.value=='DEUX_PERSONNES'){
	  if(zoneCoEmp1!=null){
		  zoneCoEmp1.style.display='inline';
		  zoneCoEmp1.style.visibility='visible';
	  }
	  if(zoneCoEmp2!=null){
		  zoneCoEmp2.style.display='inline';
		  zoneCoEmp2.style.visibility='visible';
	  }
	  if(zoneCoEmp3!=null){	
  		  zoneCoEmp3.style.display='inline';
		  zoneCoEmp3.style.visibility='visible';
	  }
	 }

}
function redirectSimple(url){
	if(url != null){
		document.location.href=url;
	}
}