function init_editors()
{
    for (var i = 0; i < arguments.length; i++)
    {
        var name = arguments[i];
        if (typeof name == 'string')
        {
            var oFCKeditor = new FCKeditor( name, '100%', 200, 'Basic' ) ;
            oFCKeditor.BasePath = '/data/js/editor/' ;
            oFCKeditor.ReplaceTextarea() ;
        }
    }
}

