/*



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!

// !! This value must be unique to each SCO !!

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 "requiredMajorVersion"

// Usage: Integer (7 for the uPerform 2.0 output)

// NOTE: Lowest version of Flash Plugin allowed

var requiredMajorVersion = 7;

// Minor version of Flash required

var requiredMinorVersion = 0;

// Minor version of Flash required

var requiredRevision = 63; // 63 should do, but 69 contains security patch



// String "reviewerEnabled"

// Usage: true/false

// NOTE: Used to enable/disable Reviewer within the courseware

var reviewerEnabled = false;



// String "viewFromWeb"

// Usage: true/false

// NOTE: Used to set a determine which method the course will use to open windows

var viewFromWeb = true;



// ------------------------------------------------------------------