/**
 * Validation des formulaires du module de don
 */

function actionSelect(Objet){
	var dest = Objet.value;
	var champs = dest.split("|");
	var form = document.createElement("form");
	form.method="GET" ;
	form.action = champs[0] ;
	if(champs[0] != null) {
	    var myInput = document.createElement("input") ;
	    myInput.setAttribute("name", "ID") ;
	    myInput.setAttribute("value", champs[1]);
	    form.appendChild(myInput) ;
	}
	  document.body.appendChild(form) ;
	  form.submit() ;
	  document.body.removeChild(form) ;
}


