function	openCloseDiv(theDiv) {
	if (document.getElementById(theDiv).style.display == 'none') {
		document.getElementById(theDiv).style.display = 'block';
		document.getElementById('Title'+theDiv).style.backgroundColor = '#9ccaee';
		document.getElementById('Title'+theDiv).style.borderTop = '1px solid #609fd0';
		document.getElementById('Title'+theDiv).style.borderBottom = '1px solid #609fd0';
	} else {
		document.getElementById(theDiv).style.display = 'none';
		document.getElementById('Title'+theDiv).style.backgroundColor = '#daedfb';
		document.getElementById('Title'+theDiv).style.borderTop = '1px solid #daedfb';
		document.getElementById('Title'+theDiv).style.borderBottom = '1px solid #ffffff';
	}
}
function 	iCommande(theInput, theDiv) {
	if (document.getElementById(theInput).checked == true) {
		document.getElementById(theDiv).style.backgroundColor = '#FFCC33';
		_nbrChecked++;
	}
	else {
		document.getElementById(theDiv).style.backgroundColor = '#ffffff';
		_nbrChecked--;
	}
	document.getElementById('toCommandeCount').value = _nbrChecked;
}
function	selectionCommande() {
	oneCheck = false;
	allInput = document.getElementsByTagName('input');

	for(cnt in allInput){
		if (allInput[cnt].checked == true && oneCheck == false) {
			oneCheck = true;
		}
	}
	if (oneCheck == false) {
		alert("Aucune sélection n'a été faite");
	}
	else {
		modAjax.POST('inc.elearning_getCommande.php', 'elearningCommande-form', 'page-principale-elearning');
	}
}

function	openClose(theDiv) {
	myDiv = document.getElementById(theDiv);
	if (myDiv.style.display == 'none') {
		myDiv.style.display = 'block';
	} else {
		myDiv.style.display = 'none';
	}
}