/*

This file should reside in the "[COURSE_ROOT]/conf" directory.
All values should be noted within this file, as they are all used.

*/

// ------------------------------------------------------------------

// String "courseAPIName"
// Usage: Simple String value used for LocalAPI and Window Names
// NOTE: No spaces or special characters!
var courseAPIName = 'preview';

// Bool "windowControl"
// Usage: true/false
// NOTE: Used to enable/disable moving and resizing the course window
var windowControl = true;

// Bool "fullscreen"
// Usage: true/false
// NOTE: Used to enable/disable fullscreen mode. If false, you must set
//       the proper "courseWidth" and "courseHeight" vars. If enabled, width and height
//       are ignored.
var fullscreen = true;

// Int "courseWidth"
// Usage: Integer
// NOTE: Width of course window
var courseWidth = 1024;

// Int "courseHeight"
// Usage: Integer
// NOTE: Height of course window
var courseHeight = 768;

// Bool "lmsDebug"
// Usage: true/false
// NOTE: This is for the LMS debugger
var lmsDebug = false;

// Int "requiredVersion"
// Usage: Integer (6+ for MX shell)
// NOTE: Lowest version of Flash Plugin allowed
var requiredVersion = 6;

// String "reviewerEnabled"
// Usage: true/false
// NOTE: Used to enable/disable Reviewer within the courseware
var reviewerEnabled = false;

// ------------------------------------------------------------------