if(typeof(tinyMCE) !== "undefined"){
	tinyMCE.init({
		mode: "textareas",
		language: "nl",
		theme: "advanced",
		editor_selector: "mceAdvanced",
		plugins: "table,paste",
		theme_advanced_buttons1: "cut,copy,pastetext,|,link,unlink,anchor,|,tablecontrols",
		theme_advanced_buttons2: "formatselect,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,numlist,bullist,outdent,indent,|,charmap,|,removeformat,cleanup,code",
		theme_advanced_buttons3: "",
		theme_advanced_toolbar_location: "top",
		theme_advanced_toolbar_align: "left"
	});
}

function showLoader(){
	$("#loader").show();
}

function confirmLogout(url){
	var r = confirm("Weet u zeker dat u uit wilt loggen?");
	if(r) window.location.href = "cms/index.php?event=logout&url="+url;
}

function confirmPageDelete(id){
	var r = confirm("Weet u zeker dat u deze pagina wilt verwijderen?");
	if(r) window.location.href = "cms/index.php?event=page-delete&id="+id;
}