// --------------------------------------- SOC Preferences
//
// Written by Brian Davies
// September 2004
// Copyright 2004, Cognitive Arts
//
// --------------

// --------------------------------------- Course ID

var COURSE_ID = "bethisreal";

// --------------------------------------- Incident Reporting

// get these values from Ben, Brian or Paul

var PROJECT_ID = 83;
var PROJECT_COURSE_ID = 94;

var INCIDENT_POST_PAGE = "http://www.bethisrael.cognitivearts.com/exec/pub/errorhandling/incidentpost.cfm";
var INCIDENT_SEARCH_PAGE = "http://www.bethisrael.cognitivearts.com/exec/misc/projects/incidents/selectincidents.cfm";

// --------------------------------------- Course System Requirements

// the list of identified browsers is defined in browsers.js

var REQUIREMENTS = ((MAC && IE5) || (MAC && SA) || (FF10) || (MZ17)
	|| (PC && IE5) || (PC && IE55) || (PC && IE6) || (PC && IE7) || (PC && NN6));

// --------------------------------------- Debugging Toggle

// set ALLOW_D_FOR_DEBUG in scripts/prefs.js to turn on debugging on the fly with alt-shift-D

var DEBUG_DEFAULT_ON = false;

var ADMIN_PASSWORD = "belushi"

// --------------------------------------- Course Size

// Standard Layout

var DEFAULT_ROW_LAYOUT = "*,544,*,0";
var DEFAULT_COLUMN_LAYOUT = "*,790,*";

var DEBUG_ROW_LAYOUT = "*,544,*,40";

/*
// Supersize Layout

var DEFAULT_ROW_LAYOUT = "*,712,*,0";
var DEFAULT_COLUMN_LAYOUT = "*,1014,*";

var DEBUG_ROW_LAYOUT = "*,712,*,40";
*/

// --------------------------------------- Paths

var START_PATH = "pages/splash.htm";

// --------------------------------------- LMS Mode

// the LMS_MODE is only necessary if SELF_ORIENT is false

var SELF_ORIENT = true;

var LMS_MODE = null;

// valid LMS_MODE values:
//    "lms-aicc-applet.htm", "lms-aicc-script.htm", "lms-mock-perl.htm",
//    "lms-none.htm", "lms-none-cookie.htm", "lms-none-userdata.htm", "lms-scorm.htm"

// --------------------------------------- JS Error Reporting

var REPORT_JS_ERRORS_AS_INCIDENTS = true;

var SUPPRESS_JS_ERROR_ALERTS = true;

// --------------------------------------- LMS Error Reporting

var ALERT_USER_TO_LMS_ERRORS = true;

// --------------------------------------- Offline Switching

// read the documentation in offline.js before enabling this feature

var ENABLE_OFFLINE_SWITCHING = false;

// the following are only necessary if switching is enabled

var TOP_PATH = "start.htm";
var ZIP_PATH = "../../sampler.exe";  // why double-dot-dot?

// --------------------------------------- End Of File
