var newcscounter = 0;/*function checkMenuInsert() {	if (newMICounter == 0) {		alert("U heeft nog geen menuitems toegevoegd.")		return false;	}	return true;}*/function newCourseStatus(cnt) {	showLoading();	        $.ajax({		url: "modules/Baanstatus/Ajax/newcoursestatus.php?counter=" + (cnt + newcscounter),		success: function(data) {		    $("#list").append(data);			hideLoading();		}	});	newcscounter++;                return false;}function deleteCS(id) {	elem = document.getElementById("cs_" + id);	elem.parentNode.removeChild(elem);}function deleteNMI(counter) {	elem = document.getElementById("n_mi_" + counter);	elem.parentNode.removeChild(elem);}function editMI(id) {	showLoading();	$.ajax({		url: "modules/Menu/ajax/editMenuitem.php?id=" + id,		success: function(data) {			$("#editItem").html(data);			hideLoading();		}	});}    
