tinyMCE.init({
	mode : "textareas",
    editor_selector : "wysiwygArea",
    plugins : "paste,fullscreen,cmslink",
    external_link_list_url : "/js/fut/plugins/cmslink/js/cmslist.php",
	theme : "advanced",
	theme_advanced_buttons1 : "bold,italic,underline,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,pastetext,pasteword,selectall,|,link,fullscreen,code",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
	theme_advanced_buttons4 : "",
	theme_advanced_toolbar_location : "bottom",
	theme_advanced_toolbar_align : "center",
	debug : false,
	content_css : "",
    document_base_url : SGL_JS_WEBROOT + "/" + SGL_JS_FRONT_CONTROLLER,
    paste_use_dialog : true,
    remove_script_host : true,
    relative_urls: false,
    width : "400px",
    height : "200px"
});


function fileBrowserCallBack(field_name, win, connector, id)
{
	connector = SGL_JS_WEBROOT + "/js/fut/filemanager/browser.html?Connector=" + SGL_JS_WEBROOT + "/js/fut/filemanager/connectors/php/" + connector + ".php";

	var	folder;
	if (id) {
		folder = id;
	} else if (document.getElementById('frmImageFolderId')) {
		folder = document.getElementById('frmImageFolderId').value;
	}

	if (typeof folder != "undefined" && folder != '')
		connector += '&ExtraParams=' + folder;

   	tinymcpuk_field = field_name;
    tinymcpuk = win;

    window.open(connector, "tinyfck", "modal,width=650,height=600");
}
