function haalAgenda(soort, uid, el, label){
	$(el).setStyle('display','none');
	new Ajax('/index.php?id=63&type=100', {
			update: $('middlecolumn'),
			evalScripts: true, //Alles tussen <script>alert('sdfsdffs');</script>
			postBody: {actie: "haalagenda", soort: soort, uid:uid, label:label, identiteit:identiteit },
			onComplete : function(){
				fnHighLight(hightlights);
			}
	}).request();
}

function plaatsInAgenda(uid){
	new Ajax('/index.php?id=63&type=100', {
			postBody: {actie: "plaatsinagenda", uid:uid, identiteit:identiteit}
	}).request();
}

function toevoegenStdAbonnement(){

	new Ajax('/index.php?id=63&type=100', {
			postBody: {actie: "toevoegenStdAbonnement"}
	}).request();
	
}