function submitCommuniqueLeftMenu(doSubmit) {
	if (checkCommuniqueLeftMenu()) {
		$("#formCommuniqueLeftMenu").get(0).submit();
	}
}

function checkCommuniqueLeftMenu() {
	$("#formCommuniqueLeftMenu input").each(function(i, obj) {
		obj.disabled = false;
	});
	return true;
}