// your KEY
var WM_Alexandria_key = '224-105-163-241-99-214-45-1161-1148-1158-1164-1147-1154-1153-1163-1170-1100-1105-1106-1107-1107';

// The language used in your html pages 
// used by Alexandria when it can not determine the "page" language by itself
var WM_Alexandria_defaultSourceLanguage = "en";
// used by Alexandria when it can not determine the "user" language by itself
// if it is different from WM_Alexandria_defaultSourceLanguage, translations are displayed instead of definitions and synonyms
var WM_Alexandria_defaultTargetLanguage = "fr";
// The charset used in your html pages 
// used by Alexandria when it can not determine it by itself
var WM_Alexandria_defaultCharset        = "UTF-8";

// Reserved word
// when someones clicks on these words, the page with the given url is displayed instead of Alexandria's data
// Beware : case-insensitive !!!
// Available with all options
var WM_Alexandria_reservedWords = [
  'Dutoit',                   'http://www.memodata.com/alexandria-memodata/definitions_en/def.dominique_dutoit.en.html',
  'Dominique Dutoit',         'http://www.memodata.com/alexandria-memodata/definitions_en/def.dominique_dutoit.en.html',
  'MEMODATA',                 'http://www.memodata.com/alexandria-memodata/definitions_en/def.memodata.en.html', 
  'Alex',                     'http://www.memodata.com/alexandria-memodata/definitions_en/def.alexandria.en.html',
  'Alexandria',               'http://www.memodata.com/alexandria-memodata/definitions_en/def.alexandria.en.html', 
  'Dictionnaire Intégral',    'http://www.memodata.com/alexandria-memodata/definitions_en/def.di.en.html',
  'Integral Dictionary',      'http://www.memodata.com/alexandria-memodata/definitions_en/def.di.en.html',
  'The Integral Dictionary',  'http://www.memodata.com/alexandria-memodata/definitions_en/def.di.en.html',
  'SEMIOGRAPHE',              'http://www.memodata.com/alexandria-memodata/definitions_en/def.semiographe.en.html',
  'SEMIOGRAPH',               'http://www.memodata.com/alexandria-memodata/definitions_en/def.semiographe.en.html',
  'Sémiographe',              'http://www.memodata.com/alexandria-memodata/definitions_en/def.semiographe.en.html',
  'DICOLOGIQUE',              'http://www.memodata.com/alexandria-memodata/definitions_en/def.dicologique.en.html'

];

// Do you want your reserved words to be double-underlined and reactive ?
// values : Y,N
// default value : N
var WM_Alexandria_highlight_reservedWords = "N";
// values : 
//  - "closed" : only if the Alexandria window is closed
//  - "always" : no matter if the Alexandria window is closed or open         
// default value : "always"
var WM_Alexandria_highlight_reservedWords_options = "always";
// timeout before reaction of the reserved word (in milliseconds)
var WM_Alexandria_highlight_reservedWords_timeout = "350";
// Highlited reserved words underline style
// values : "double", "dashed", "none"
// default value : double
var WM_Alexandria_highlighted_reservedWords_style = "dashed";

// Doctype ( null, "HTML4", "XHTML" )
// default value : null
var WM_Alexandria_doctype = "HTML4";

// Is toolbar visible or not ?
// values : Y,N
var WM_Alexandria_show_toolbar = "Y";

// ---------------------------- NOT FREE OPTIONS --------------------------------------

// URL of your CSS to be applied on Alexandria's data
// Only available with the "CSS option"
var WM_Alexandria_cssURL = null;

// Colors of the title bar
// Only available with the "CSS option"
var WM_Alexandria_titleBackgroundColor = "#FFDD00";
var WM_Alexandria_titleTextColor       = "black";
// max 20 characters
var WM_Alexandria_titleText            = 'SENSAGENT';

// Sizes of the frames  
// Only available with the "FRAMES option"
var WM_Alexandria_topZoneHeight    = 0;
var WM_Alexandria_bottomZoneHeight = 0;
var WM_Alexandria_middleZoneHeight = 200;
var WM_Alexandria_leftZoneWidth    = 0;
var WM_Alexandria_rightZoneWidth   = 0;
var WM_Alexandria_dataWidth        = 500;

// ----------------------------------------------------
// Content of the left zone (HTML)
// Only available with the "FRAMES option"
function WM_Alexandria_getLeftZone()
{
  return '';
}
// ----------------------------------------------------
// Content of the right zone (HTML)
// Only available with the "FRAMES option"
function WM_Alexandria_getRightZone()
{
  return '';
}
// ----------------------------------------------------
// Content of the bottom zone (HTML)
// Only available with the "FRAMES option"
function WM_Alexandria_getBottomZone()
{
  return '';
}

// ----------------------------------------------------
// Content of the top zone (HTML)
// Only available with the "FRAMES option"
function WM_Alexandria_getTopZone()
{
  return '';
}


