function action(idCarteParente,idCarte){

	window.parent.document.forms["moteurCarte"].elements["carteParente"].value = idCarteParente;
	window.parent.document.forms["moteurCarte"].elements["carte"].value = idCarte;
	window.parent.document.forms["moteurCarte"].submit();
	
}
function actionProgramme(idCarte,idProgramme){

	window.parent.document.forms["moteurCarte"].action += "#bottomCarto";
	
	window.parent.document.forms["moteurCarte"].elements["carte"].value = idCarte;
	window.parent.document.forms["moteurCarte"].elements["programme"].value = idProgramme;
	window.parent.document.forms["moteurCarte"].submit();
	
}

function show_blocMoteur(idTypeBloc){

	document.getElementById("blocMoteur_1").style.display = "none";
	document.getElementById("onglets_listing").style.display = "none";
	
	document.getElementById("blocMoteur_2").style.display = "none";
	
	if(idTypeBloc == 1){
		document.getElementById("onglets_listing").style.display = "block";
	}
	document.getElementById("blocMoteur_" + idTypeBloc).style.display = "block";
	
}