//----------------------------------------------------------------------------------------
// global settings
//----------------------------------------------------------------------------------------

// select design
var design = "Office2003"; // supported
                       // ""             Standard like Office 2000
                       // "Office"       Like Office 97
                       // "Office2003"   Like Office 2003
                       // This string corresponds with the last characters of the
                       // stylesheet rules in editor/design/style/edit.css

// set language
var language = "EN";   // supported
                       // EN = english
                       // DE = german
                       // ...


// set target file, where html content is posted
// enter here your file with absolute or relative path
// in relativ mode, the location must be relativ to 'editor' directory
// in Java use the servlet and the java adapter
var target = "dialogs/php/saveFile.php";


// set target file, that is called to load or save text modules
// enter here your file with absolute or relative path
// in relativ mode, the location must be relativ to 'editor' directory
// implemented only for Java and .Net and php
var targetTextModule = "dialogs/php/intel.php";


// set target file, that is called to get intellisense data
// enter here your file with absolute or relative path
// in relativ mode, the location must be relativ to 'editor' directory
// implemented only for Java and .Net
var targetIntellisense = "dialogs/php/intel.php";


// key code for intellisense ("" if disabled)
var globalISKey = new Array("45345");

// defines, what is visible in HTML mode
var globalHTMLMode = "1";
                      // 1 = Standard ( editing the html body )
                      // 2 = Extended ( editing the entire document -> head and body)

// set the document directory within the web root(this directory is displayed when you open documents via dialog)
var globalDocDir       = "/files"


// set the image directory within the web root(this directory is displayed when you open images via dialog)
var globalImageDir     = "../../../../images/custom"


// select technology for dialog functions like open/save dialog
var globalTechnology   = "php"; // supported
                                // asp - use server side asp technology
                                // jsp - use server side jsp technology
                                // php - use server side PHP technology


// these values are set dynamically during startup dependant of design
// global toolbar background color for all toolbars
var globalToolbarColor = "BDBCD6";

// global toolbar background color for all toolbars
var globalToolbarBorder = true;

