function show_diary_text(datePicked){
	$.ajax({
		type: "POST",   
		url: "/"+my_root+"/ajaxscript/get_diary_comment.php",
		cache: false,
		data: "date="+datePicked+"&addDays=0",
		dataType: "script",    
		success: function(returnData, statusOfReturn){
		},
		error: function(){
			alert("Der opstod en fejl, da dagbogskommentaren skulle hentes.");
		}
	});
	return false;
}

