<!--
/* **********************************************************************************************************
Module Name  : au_requirements_data.js
Date Written : 12/21/2000
Company      : CRKInteractive
Copyright    : (c) 2000, 2001 CRKInteractive All Rights Reserved
Purpose      : To provide requirements data to a CRKInteractive produced AU
Revisions    :
************************************************************************************************************/
/* **********************************************************************************************************
Usage - This data array is used to specify to the requirements program the requirements of this AU. 
        Each array item indicates a requirement that needs to be checked. 

Each of the parameters below can be modfied to support a variety of different tracking needs.

Parameters that MUST change for each implementation are:

  mstrAuReqName - The cookie name should be unique for each implementation to avoid cookie name collision
                  between different requirement checking on the same server if necessary.

  mAuReqArray   - The requirement array will be changed from implementation to implementation to reflect the
                  requirement needs of an AU.

Other changable parameters are:

  mstrAuReqPath - The cookie path specifies under which folder the cookie info is stored under. Default is
                  the top level web server folder.

  mintAuReqLife - Indicates the number of days the cookie persists on a student's computer.

************************************************************************************************************/
/* **********************************************************************************************************
Variables
************************************************************************************************************/
var mstrAuReqName  = "auShowReqs"; //Name of the cookie used for tracking if user wishes to see requirements problems
var mstrAuReqPath  = "/";              //Path used to store cookie under
var mintAuReqLife  = 45;               //Number of days the requirements information persists on a student's computer
var mAuReqArray    = new Object();     //Array of requirements information to be checked by the application
var mintAuReqItems = -1;                //Counter of number of items to check

/* **********************************************************************************************************
AU content pages to Reqigate

1. Add a new Req element for each and every content page in the AU root folder.
************************************************************************************************************/
mAuReqArray[++mintAuReqItems] = new ReqOBJ("Screen Resolution", "Width", ">=", "800", "Screen resolution of 800 by 600 pixels or better.", "<P><FONT size='1'><B>For Microsoft Windows:</B><BR>1. Open the Control Panel<BR>2. Select the Display icon<BR>3. Click the settings tab<BR>4. Adjust the screen resolution to 800 x 600 or better</FONT></P><P><FONT size='1'>For other operating systems, please consult your OS documentation for adjusting your screen resolution.</FONT></P>");
mAuReqArray[++mintAuReqItems] = new ReqOBJ("Browser", "Microsoft", ">=", "4.0", "Microsoft Internet Explorer 4.0 or better.", "http://www.microsoft.com/windows/ie/default.htm");
mAuReqArray[++mintAuReqItems] = new ReqOBJ("Browser", "Microsoft", ">=", "4.0", "Microsoft Internet Explorer 4.0 or better.", "http://www.microsoft.com/windows/ie/default.htm");
mAuReqArray[++mintAuReqItems] = new ReqOBJ("Browser", "Netscape", ">=", "4.5", "Netscape Navigator 4.5 or better.", "http://home.netscape.com/computing/download/index.html");
mAuReqArray[++mintAuReqItems] = new ReqOBJ("Browser", "AOL", ">=", "5.0", "AOL 5.0 or better.", "http://free.aol.com/tryaolfree/cdt.adp?139331");
mAuReqArray[++mintAuReqItems] = new ReqOBJ("PlugIn", "Shockwave Flash", ">=", "5.0", "Macromedia Flash Player 5.0 or better.", "http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash");

mAuReqArray.length = ++mintAuReqItems;

// -->