/* These parameters control the database connection for the menu and users */
var dbname = "dncl";        // The database name
var dbuser = "john";       // The databse user
var printer = ">>:/dev/null:";  // The default printer
var tagDelay = 1;              // Tag printing delay between tags = 1 second
// var printer = "lp:barcode"  // The default printer
/* These are the parameters to define the appearance of the ToC. */
var
	showNumbers = false,		// display ordering: yes=true | no=false
	backColor = "#66CCCC",		// background color of the ToC headlines
        backRColor = "#FFCCCC",         // background color of the right column
        backTColor = "#CCCC99",         // background color of the right column
        backCColor = "#FFFFCC",         // background color of the right column
	normalColor = "#000000",	// text color of the ToC 
	lastVisitColor = "#0000FF",	// text color of the line last visited
	currentColor = "#FF0000",	// text color of the line just clicked
	titleColor = "#000000",		// text color of the title 
	mLevel = 1,			// number of levels minus 1 the headlines of which are presented with large and bold fonts   
	textSizes = new Array(2, 1.0, 0.7, 1.0, 0.7),	// font-size factors for: [0] the title, [1] larger and bold fonts [2] smaller fonts if MS Internet Explorer [3] larger and bold fonts [4] smaller fonts if Netscape Navigator.
	fontTitle = "Helvetica,Arial", // font-family of the title 
	fontLines = "Helvetica,Arial", // font-family of the headlines
	tocScroll=true,	// Automatic scroll of the ToC frame (true) or not
	tocBehaviour = new Array(1,0),	// Indicates how the ToC shall change when clicking in the heading symbol (1st arg.) resp. in the heading text (2nd arg). Arg's meaning: 0 = No change, 1 = ToC changes with automatic collapsing, 2 = ToC changes with no automatic collapsing.
	tocLinks = new Array(1,0);	// Indicates whether the content's location shall be changed when clicking in the heading symbol (1st arg.) resp. in the heading text (2nd arg). Arg's meaning: 1 = No, 0 = Yes. 

