/*
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
clientLib Global Configuration File: Global config settings
Each of these can be overridden locally in the page's local config block!
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/

// Enter the rounded file size of clib_globalconf.js here (integer)
var clib_globalconf_filesizeK = 16;

/* ---------------------------------------------------------------------- *\
   Core Module (clib_core)
\* ---------------------------------------------------------------------- */

// Debugging
// Boolean; set to true to activate the clientLib debug window
// Will be overridden by URL parameter string 'cL_debug=true'
var cL_Debug=false;

// Global modules to load
// Modules defined here will be loaded globally; same format as the per-page property cL_ModulesToLoad
var cL_GlobalModulesToLoad='';

// Language Code (ISO)
// Used by certain modules to choose output formats and language	
// Possible formats: 'xx', 'xxx', '_xxx' (case insensitive)
var cL_language='de';
	
// Either include the CSS stylesheets or not
var cL_IncludeStylesheets=true;
	
// Browser selection
	// Boolean; set to true to redirect Opera 7 to the URL specified in cL_DenyURL
	var cL_DenyOpera=false; 
	// Boolean; set to true to redirect all Gecko browsers to the URL specified in cL_DenyURL
	var cL_DenyGecko=false; 
	// Boolean; set to true to redirect Gecko browsers below version 1.0 to the URL specified in cL_DenyURL
	var cL_DenyGeckoBefore1=false;
	// Boolean; set to true to redirect every version of Internet Explorer to the URL specified in cL_DenyURL
	var cL_DenyIE=false; 
	// Boolean; set to true to redirect Internet Explorer version prior to 5.5 (Win) to the URL specified in cL_DenyURL
	var cL_DenyIE50=false; 
	// Boolean; set to true to redirect Internet Explorer versions prior to 6 to the URL specified in cL_DenyURL
	var cL_DenyIEMac=false; 
	// Boolean; set to true to redirect Internet Explorer on MacOS to the URL specified in cL_DenyURL
	var cL_DenyIE55=false; 
	// Boolean; set to true to redirect Safari to the URL specified in cL_DenyURL
	var cL_DenySafari=false; 
	// URL to redirect all denied browsers to
	var cL_DenyURL='errorpage.html'; 

// Inclusion of external CSS files
	// To be included by all browsers
	var cL_CssFileName='clib/css/all.css'; 
	// to be included by Opera
	var cL_OperaCssFileName='clib/css/op.css'; 
	// To be included by Internet Explorer on Windows
	var cL_IECssFileName='clib/css/ie.css'; 
	// To be included by Internet Explorer on Mac
	var cL_IEMacCssFileName='clib/css/ie.css'; 
	// To be used by Gecko on non-Mac OS
	var cL_GeckoCssFileName='clib/css/ge.css'; 
	// External CSS file to be used by Gecko on Mac OS
	var cL_GeckoMacCssFileName='clib/css/ge.css'; 
	// External CSS file to be used by other browsers
	var cL_SafariCssFileName='clib/css/ge.css'; 
	// External CSS file to be used by other browsers
	var cL_OtherCssFileName='clib/css/ge.css'; 

// Global clib image path; all module's image file names are relative to this path
	// String including trailing slash
	var cL_ImagePath='clib/img/'; 
	
/* ---------------------------------------------------------------------- *\
   Session Timeout Alerter Module (clib_time)
\* ---------------------------------------------------------------------- */

// Client-side Session timeout value; should be the same value as the server-side timeout minus 1 minute
// Numeric; session timeout time in seconds; deactivate timeout by setting value to -1
var cL_ti_sessionTimeLeft=60; 

// URL to redirect out-timed sessions to
var cL_ti_redirectionURL='timeoutpage.html';

// Alert texts (to be dynamically overriden in the local configuration block)
	// Text for the parent window
	var cL_ti_timeoutTextParent='Deine Sitzung ist abgelaufen und Du wurdest abgemeldet. Bitte klicke auf Abbruch, wenn Du Fensterinhalte mit Hilfe der Zwischenablage sichern willst. Wenn Du Dich neu einloggen willst, klicke stattdessen auf OK.';
	// Text for a child window
	var cL_ti_timeoutTextChild='Deine Sitzung ist abgelaufen und Du wurdest abgemeldet. Bitte klicke auf Abbruch, wenn Du Fensterinhalte dieses Fensters mit Hilfe der Zwischenablage sichern willst. Wenn Du dieses Fenster schliessen und dich neu einloggen willst, klicke stattdessen auf OK.';
	
/* ---------------------------------------------------------------------- *\
   Communication Module (clib_comm)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Formengine Module (clib_form)
\* ---------------------------------------------------------------------- */

// Image file names
	// Message window background image
	var cL_fo_BgFilename='';
	// OK button image
	var cL_fo_OkFilename='fo_ok.gif'; 
	// Cancel button image
	var cL_fo_CancelFilename='fo_cancel.gif'; 

// Colors
	// Border color to use if border is true (HTML/CSS notation)
	var cL_fo_BorderColor='#B7CC87'; 
	// Color to use if no message window background image is defined and color is true (HTML/CSS notation)
	var cL_fo_BgColor='#FCFBF1';
	
// Border
	var cL_fo_BorderColor='#B7CC87';

// CSS classes
	// CSS class name for the message window (optional)
	var cL_fo_formengineStyle='formengine';
	var cL_fo_bodyStyle='formengine_body'; // only valid in forceNewBrowser mode

/* ---------------------------------------------------------------------- *\
   Showmessage Module (clib_show)
\* ---------------------------------------------------------------------- */

// Message window text layout
	// Color for the message text (HTML/CSS notation)
	var cL_sh_messageTextColor='black';	
	// CSS class name for the message text; overrides other layout parameters
	var cL_sh_messageTextClass=''; 
	// CSS class name for the message buttons; overrides other layout parameters
	var cL_sh_messageButtonClass=''; 
	// Background color for the message window (HTML/CSS notation)
	var cL_sh_messageBgColor='white'; 
	// Background image for the message window; full relative path needed
	var cL_sh_messageBackground=''; 
	// Padding between text and border
	var cL_sh_messagePadding=1; 
	// Border with (HTML notation); defaults to 0
	var cL_sh_messageBorderWidth=2; 
	// Border color (HTML/CSS notation); defaults to user system setting
	var cL_sh_messageBorderColor=''; 
	// Shadow color (HTML/CSS notation); no shadow will be casted when not set
	var cL_sh_messageShadowColor='black'; 

// Message window title layout
	// Background color for the message title (HTML/CSS notation); defaults to user system setting
	var cL_sh_messageTitleBgColor=''; 
	// Text color for the message title (HTML/CSS notation); defaults to user system setting
	var cL_sh_messageTitleTextColor='';
	// Message title's left padding in px (CSS notation); defaults to 0
	var cL_sh_messageTitleLeftPadding=20; 
	// Maximum height for the message title (HTML notation)
	var cL_sh_messageTitleHeight=20; 
	// Background color for the Close symbol ('X') (HTML/CSS notation); defaults to user system setting
	var cL_sh_messageTitleCloseBgColor=''; 
	// Color for the close X (HTML/CSS notation); defaults to user system setting
	var cL_sh_messageTitleCloseColor=''; 
	// Border color for the Close symbol ('X') (HTML/CSS notation); defaults to user system setting
	var cL_sh_messageTitleCloseBorderColor=''; 
	
// Message window button layout
	// File name for the OK button
	var cL_sh_messageOkImage='';
	// File name for the Cancel button
	var cL_sh_messageCancelImage=''; 
	
// Progress bar layout
	// Color for the progress text (HTML/CSS notation)
	var cL_sh_progressTextColor=''; 
	// CSS class name for the progress text; overrides the color
	var cL_sh_progressTextClass=''; 
	// Background color for the progress element (HTML/CSS notation)
	var cL_sh_progressBgColor=''; 
	// Background image file name for the progress element
	var cL_sh_progressBackground=''; 
	// Padding between border and progress element content (HTML notation)
	var cL_sh_progressPadding=7; 
	// Border of the progress element (HTML notation)
	var cL_sh_progressBorderWidth=2; 
	// Border color of the progress element (HTML/CSS notation)
	var cL_sh_progressBorderColor=''; 
	// Shadow color (HTML/CSS notation); no shadow will be casted when not set
	var cL_sh_progressShadowColor='black'; 
	// Color for the progress bar (HTML/CSS notation)
	var cL_sh_progressBarColor='white'; 
	// Background image file name for the progress bar
	var cL_sh_progressBarBackground=''; 
	// Width of the progress element (HTML notation)
	var cL_sh_progressWidth=208; 
	// Height of the progress element (HTML notation)
	var cL_sh_progressHeight=32; 
	
// Modal disabler element layout
	// Color for the modal disabler element (HTML/CSS notation)
	var cL_sh_modalDisablerBgColor='#808080'; 
	// Opacity level for the modal disabler element in %
	var cL_sh_modalDisablerOpacity=75; 

/* ---------------------------------------------------------------------- *\
   Imagehandling Module (clib_imag)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Tooltip Module (clib_ttip)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Dateselect Module (clib_dats)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Stretchiframe Module (clib_stre)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Switchhttps Module (clib_htps)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Editor Module (clib_edit)
\* ---------------------------------------------------------------------- */

// Editor CSS style; has no influence on the textarea as shown on Gecko <1.3 and Opera (optional)
var cL_ed_editorStyle='background-color:#FFFFFF;font-family:verdana,arial,helvetica,sans-serif;font-size:8pt;color:#333333;'; 
// Editor toolbar CSS classes
	var cL_ed_buttonClass='editor_button';
	var cL_ed_buttonOnmouseoverClass='editor_button_onmouseover';
	var cL_ed_buttonOnmousedownClass='editor_button_onmousedown';
	
// Editor LINK colors (HTML notation); sets the user-created links's colors
	// Link
	var cL_ed_linkColor='#c9bf8e';
	// Visited link
	var cL_ed_vLinkColor='#c9bf8e';
	// Active link
	var cL_ed_aLinkColor='#c9bf8e';
	
// Editor LINK target (HTML notation); user-created links will be created with this target attribute
	// String in HTML notation
	var cL_ed_createLinkTarget='_blank';

// Button image file names; expected to be GIFs with transparent backgrounds
	var cL_ed_btBoldFileName='ed_but-bold.gif'; // bold
	var cL_ed_btUnderlineFileName='ed_but-underline.gif'; // underline
	var cL_ed_btItalicFileName='ed_but-italic.gif'; // italic
	var cL_ed_btLinkFileName='ed_but-createlink.gif'; // insert link URL
	var cL_ed_btLeftFileName='ed_but-left.gif'; // align left
	var cL_ed_btCenterFileName='ed_but-center.gif'; // align center
	var cL_ed_btRightFileName='ed_but-right.gif'; // align right
	var cL_ed_btNumberedlistFileName='ed_but-numberedlist.gif'; // create numbered item list
	var cL_ed_btBulletlistFileName='ed_but-bulletlist.gif'; // create bulleted item list
	var cL_ed_btInsertImageFileName='ed_but-imagelink.gif'; // insert image URL
	
// Button image tooltip texts; if language-dependant, override them in the local configuration block!
	var cL_ed_btBoldText='Fett'; // bold
	var cL_ed_btUnderlineText='Unterstrichen'; // underline
	var cL_ed_btItalicText='Kursiv'; // italic
	var cL_ed_btLinkText='Link-URL'; // insert link URL
	var cL_ed_btLeftText='Links ausrichten'; // align left
	var cL_ed_btCenterText='Zentriert'; // align center
	var cL_ed_btRightText='Rechts ausrichten'; // align right
	var cL_ed_btNumberedlistText='Nummerierte Liste'; // create numbered item list
	var cL_ed_btBulletlistText='Liste'; // create bulleted item list
	var cL_ed_btInsertImageText='Bild-URL'; // insert image URL

// Smiley control fields
	// Smiley image file names and their strings
	var cL_ed_smileyFile = new Array(); var cL_ed_smileyString=new Array(); // Don't modify this line
	// For each smiley icon, expand the array by one instance containing a string:
	// the new icon's file name and a corresponding smiley string for browsers without WYSIWYG editing; comma as separator
	cL_ed_smileyFile[0]='ed_smi-biggrin.gif,:D';
	cL_ed_smileyFile[1]='ed_smi-smile.gif,:)';
	cL_ed_smileyFile[2]='ed_smi-frowin.gif,:(';
	cL_ed_smileyFile[3]='ed_smi-eek.gif,:o';
	cL_ed_smileyFile[4]='ed_smi-confused.gif,:-?';
	cL_ed_smileyFile[5]='ed_smi-cool.gif,8)';
	cL_ed_smileyFile[6]='ed_smi-lol.gif,:lol:';
	cL_ed_smileyFile[7]='ed_smi-mad.gif,:x';
	cL_ed_smileyFile[8]='ed_smi-razz.gif,:P';
	cL_ed_smileyFile[9]='ed_smi-redface.gif,:oops:';
	cL_ed_smileyFile[10]='ed_smi-cry.gif,:cry:';
	cL_ed_smileyFile[11]='ed_smi-evil.gif,:evil:';
	cL_ed_smileyFile[12]='ed_smi-rolleyes.gif,:roll:';
	cL_ed_smileyFile[13]='ed_smi-wink.gif,:wink:';
	cL_ed_smileyFile[14]='ed_smi-mrgreen.gif,:green:';
	cL_ed_smileyFile[15]='ed_smi-fies.gif,:fies:';
	// Cellspacing for the smiley table (HTML notation); numeric value
	var cL_ed_smileySpacing=1;
	// Cellpadding for the smiley table (HTML notation); numeric value
	var cL_ed_smileyPadding=1;
	// Amount of columns for the smiley table (HTML notation); numeric value
	// (Corresponding rows value will be calculated depending on the total amount of smileys)
	var cL_ed_smileyColumns=5;
	// CSS class name for the smiley table (optional)
	var cL_ed_smileyTableStyle='editor_smileytable';
	// CSS class name for the smiley table cells (optional)
	var cL_ed_smileyTdStyle='editor_smileytd';
	// CSS class name for the character counter table cell (optional)
	var cL_ed_charcountTdStyle='editor_charcounter';
	
// Maxchar deathloop cut text; if language-dependant, use the local configuration block instead (No HTML)
// #maxchars# is a placeholder; the function inserts the defined maxchars value here
	window.cL_ed_maxcharDeathloopCutText='Nur maximal #maxchars# Zeichen sind erlaubt.\nAutomatisches, genaues Beschneiden des HTML-Inhalts wird erneut versucht.\nFalls das genaue Beschneiden erfolglos ist, wird der Inhalt um 100 weitere Zeichen beschnitten.\nDas Layout kann dabei wahrscheinlich nicht im Originalzustand erhalten werden.\nKlicke auf ABBRUCH, um stattdessen den gesamten Inhalt zu entfernen.';
	
// Prevent WYSIWYG mode
// Boolean; if true, wysiwig mode will not be used on wysiwig-capable browsers
	window.cL_ed_noWysiwyg=false;

/* ---------------------------------------------------------------------- *\
   Calendar Module (clib_cald)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Newsticker Module (clib_news)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Silktext Module (clib_silk)
\* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- *\
   Keyhandling Module (clib_keys)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Prevent Back Button Module (clib_back)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Bottom Bar Module (clib_bbar)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Dateselect Module (clib_date)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Switchhttps Module (clib_http)
\* ---------------------------------------------------------------------- */
	var cL_switchToProtocol='';
	
/* ---------------------------------------------------------------------- *\
   Stretchiframe Module (clib_stre)
\* ---------------------------------------------------------------------- */
// Currently no configuration parameters available for this module!

/* ---------------------------------------------------------------------- *\
   Logoff Module (clib_loff)
\* ---------------------------------------------------------------------- */
// 'Main' logout page URL to be redirected to as soon as all apps are logged out
	var cL_lo_displayURL='logoutpage.html';
// Application logout pages URLs separated by commas ('/mainlogout.aspx,/forum/logout.aspx,/voting/logout.aspx...')
	var cL_lo_executeURLs= 'logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html,logoutpage.html';
// Visual logout indicator
	// Indicator scaling factor; numueric; 1 = default size (smallest)
	var cL_lo_size=1;
	// Border color; string (HTML/CSS notation), black if ampty and border width not 0
	var cL_lo_borderColor='black';
	// Background color; string (HTML/CSS notation), transparent if empty
	var cL_lo_bgColor='';
	// Indicator bar color; string (HTML/CSS notation), white if empty
	var cL_lo_indicatorColor='red';
	
	