
var notificatieAjaxCalled = false;

function notificatieOpen() {
	if (document.getElementById('notificatieDropdown') && document.getElementById('notificatieOverlay')) {
		if (document.getElementById('notificatieDropdown').style.display == 'block' && document.getElementById('notificatieOverlay').style.display == 'block') {
			notificatieClose();
		} else {
			document.getElementById('notificatieDropdown').style.display = 'block';
			document.getElementById('notificatieOverlay').style.display = 'block';
		}
	}

	if (notificatieAjaxCalled != true) {
		$.ajax({
			url: "/_handler/notificatiesBekeken.php",
			context: '',
			success: function() {
			}
		});
	}
	notificatieAjaxCalled = true;
}

function notificatieClose() {
	if (document.getElementById('notificatieDropdown')) {
		document.getElementById('notificatieDropdown').style.display = 'none';
	}
	if (document.getElementById('notificatieOverlay')) {
		document.getElementById('notificatieOverlay').style.display = 'none';
	}
}
