
		tinyMCE.init({
		mode : "textareas",
		theme : "advanced",
		content_css : "../css/manage.css",
		
		plugins : "insertdatetime,preview,autolink,advlink,contextmenu,inlinepopups",
		theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright, justifyfull,bullist,numlist,undo,redo,link,unlink",
		theme_advanced_buttons2 :"",
		theme_advanced_buttons3 :"",
        autolink_linkchecker_url : thisServer + 'web/js/linkcheck.php?url=<URL>',
        autolink_linkchecker_interval : 1000

	});

	function fileBrowserCallBack(field_name, url, type, win) {
		// This is where you insert your custom filebrowser logic
		alert("Filebrowser callback: field_name: " + field_name + ", url: " + url + ", type: " + type);

		// Insert new URL, this would normaly be done in a popup
		win.document.forms[0].elements[field_name].value = "someurl.htm";
	}
	
