<!-- ###############FCK EDITOR######################## -->
<script type="text/javascript" src="/fckeditor/fckeditor.js" ></script>
<script type="text/javascript">
var oFCKeditor = new FCKeditor('boardcontent');
oFCKeditor.BasePath = "/FCKeditor/";
oFCKeditor.Width = 600;
oFCKeditor.Height = 400;
oFCKeditor.CheckBrowser = true;
oFCKeditor.ToolbarSet = "Default";
var sSkinPath = "/FCKeditor/" + 'editor/skins/default/';
oFCKeditor.Config['SkinPath'] = sSkinPath;
oFCKeditor.Config['PreloadImages'] =
sSkinPath + 'images/toolbar.start.gif' + ';' +
sSkinPath + 'images/toolbar.end.gif' + ';' +
sSkinPath + 'images/toolbar.bg.gif' + ';' +
sSkinPath + 'images/toolbar.buttonarrow.gif';
oFCKeditor.ReplaceTextarea();
</script>
<!-------------------------------------------------------->