function showPageList(id) { 
  var indexItem = document.getElementById(id).selectedIndex; 
  var redirection = document.getElementById(id).options[indexItem].value; 
  if (redirection!='||') {
    var aRedirection = redirection.split('||'); 
    if (aRedirection[1]!='_blank') {
      document.location.target='_self'; 
      document.location.href=aRedirection[0];
    } else {
      window.open(aRedirection[0],'_blank');
    }
  }
}

function showPageListV2(ele) { 
	
	var indexItem= ele.parentNode.getElementsByTagName('select')[0].selectedIndex;
	var redirection=ele.parentNode.getElementsByTagName('select')[0].
	getElementsByTagName('option')[indexItem].value;

  if (redirection!=null && redirection!='' && redirection!='||') {
    var aRedirection = redirection.split('||'); 
    if (aRedirection[0]!=null && aRedirection[0]!=''){
	    if (aRedirection[1]!='_blank') {
      	document.location.target='_self'; 
      	document.location.href=aRedirection[0];
    	} else {
    	  window.open(aRedirection[0],'_blank');
    	}
    }else{
    	alert('La valeur selectionée n\'est pas accompagnée d\'un lien de redirection.');
    }
  }
}
