// SETTINGS.JS
// Defines settings that can be customized by the training developer or training administrator


// ****** LANGUAGUES ****** 
// set NumLanguages to the total number of languages available during logon
// there should be one Language[n] entry for each language
// the fields of the Language[n] entries should be separated by pipe characters ( | )
// the fields are language|code
Language = new Array();
NumLanguages = 3;
Language[0] = "English|en";
Language[1] = "Francais|fr";
Language[2] = "Espanol|sp";

LanguageSelect = "off";			// set to "on" or "off" to indicate whether the language drop-down
										// menu should be available during logon
//MultiCookieSet("LogOn", "LanguageSelect", LanguageSelect);

// ******* SYSTEM REQUIREMENTS ******* //
MinColorDepth = 16;	 // the minimum color depth to required to view the training, in
							 // bits per pixel
ScreenWidth = 800;	 
// BRD 4/9/2007 - add "Win64" to Platforms
// BRD 6/27/2007 to allow for "Intel Mac OS X" platform, which should be "MacIntel"
//Platforms = "Win32|MacPPC";	 
Platforms = "Win32|Win64|MacPPC|MacIntel";	 
