// associative array
// holds all QueryString related name=value pairs
var gQSArray = new Array();

// Boolean turns true when 
// AICC_URL value and AICC_SID value found in QueryString
var gIsAICC = false;

// Boolean turns true when
// C_URL value found in QueryString
var gIsCURL = false;

// is refinement of gIsCURL concerned with the form of the c_url paramter
// where it is expected to be of the form <folder>/<filename.extension>
var gIsCFolder = false;


// relative URL of the assessment page
// expected to be of the form <folder>/<filename.extension>
// this helps make this AICC Shell generic rather than Breeze specific
var gIsAURL = false;


// Content's Official Folder (helps ensure tests are only for launched course
// not for some other course the learner wanders into)
// This will be that portion of the string contained in c_url
// that precedes the first slash 
var gCourseFolder = new String();

// CONSTANTS for link text
var gLINK_TEXT_TEST = "Post Test";
var gLINK_TEXT_LOGIN = "Log into STARS<br>For Post Test";

// CONSTANTS for composing STARS LOGIN URL
var gSTARS_LOGIN_QUERYSTRING = "?cmd=login";
var gSTARS_LOGIN_PREFIX = "https://axess.stanford.edu/";
// var gSTARS_LOGIN_AICC_URL_DELIMETER = "/EMPLOYEE";

// CONSTANT for central ORA ASP Management page
// var gORA_ASP_URL = "ora.asp";

// URL for logging into STARS
var gStarsLogInURL = new String();

// URL for launch window of assessment page
var gAssessmentURL = new String();

