//--------------------------------------------------------
// javascript slide show "clicker"
// v 3.0 July 2002
// created by alan levine, maricopa community colleges
// alan.levine@domail.maricopa.edu                                  
// http://www.mcli.dist.maricopa.edu/proj/jclicker/
// use without with these credits is not very nice
//--------------------------------------------------------

// This external .js file contains the editable configuration
// data for a jClicker slide show.

//  Below are the 7 sections that are edited to customize
//  the slide show.

//--------------------------------------------------------
//  (1) SET UP THE SLIDES
//  One array holds preferred order that the slides will 
//  appear. For each one enter the file name of the image
//  that is inside the "images" folder. They should
//  be sequentially numbered "slides[1]", "slides[2]",
//  "slides[3]", etc. The other array holds the names
//  that will appear in the lower pop-up menu to identify
//  each slide (these should be kept to a short length so
//  the menu does not grow overly wide)
//
//  Note that you can now include HTML file names to display
//  other kinds of content.
  
var slides = new Array();
var menus = new Array();

// --------- start the image & menu names ---------------//
slides[1] = '11MainScreen.gif';
slides[2] = '12MainScreen.gif';
slides[3] = '13RanWordsOptions.gif';
slides[4] = '21Characters.gif';
slides[5] = '22Rules.gif';
slides[6] = '23Hyphens.gif';
slides[7] = '24Blanks.gif';
slides[8] = '31SaveAsScreen.gif';
slides[9] = '32MultifileCreate.gif';
slides[10] = '41DownloadDictionaryFiles.gif';
slides[11] = '42SelectDictionaryFile.gif';
slides[12] = '43ViewDictionary.gif';
slides[13] = '51ToolsMenu.gif';
slides[14] = '52MdbEditWindow.gif';
slides[15] = '53Ms-access.gif';
slides[16] = '54Notepad.gif';
slides[17] = '55Ms-excel.gif';
slides[18] = '56Msie.gif';

menus[1] = 'Randomly Selected Characters';
menus[2] = 'Randomly Selected Words';
menus[3] = 'Random Words - Settings';
menus[4] = 'Character Selection Window';
menus[5] = 'Password Rules Window';
menus[6] = 'Add Hyphens Window';
menus[7] = 'Add Blank Spaces Window';
menus[8] = 'Save Results Window';
menus[9] = 'Multifile Create Window';
menus[10] = 'Download Dictionary Files';
menus[11] = 'Select Dictionary Files';
menus[12] = 'View Dictionary Window';
menus[13] = 'Tools Menu';
menus[14] = 'RPGPRO Database File Edit Window';
menus[15] = 'MS Access Saved File';
menus[16] = 'Text Saved File';
menus[17] = 'MS Excel Saved File';
menus[18] = 'HTML Saved File';

// ----------- end of image & menu names ----------------//


//--------------------------------------------------------
//  (2) SET UP THE TITLE PAGE
//  Enter a name for the slide show and a line for the
//  credits. Avoid funky HTML here, they go in h1, h2 tags
//  and are formatted in style sheets

var showTitle = 'Random Password Generator-PRO';
var showCredits = 'Copyright 1998-2002 By Timothy L. Hirtle. All Rights Reserved.';

//--------------------------------------------------------
//  (3) SET UP THE CAPTIONS     
//  Enter text for a set of captions that correspond to the 
//  images. If the slide source is HTML, this string
//  is ignored, so assign blank values of "" to save space

var cap = new Array();                                                           
                                                        
// -------------- start the captions  ------------------//
cap[1] = 'Create Passwords Using Randomly Selected Characters';
cap[2] = 'OR Create Passwords Using Randomly Selected Words';
cap[3] = 'The RANDOM WORDS Method has Many Options to Select From';
cap[4] = 'Select Which Characters To Make Available To The Randomizer';
cap[5] = 'Apply Password Rules for Specific Character Locations';
cap[6] = 'Automatically Insert Hyphens Within Your Passwords';
cap[7] = 'Automatically Insert Blank Spaces Within Your Passwords';
cap[8] = 'Save Your Password Results As TXT, MDB (MS-Access), CSV (MS-Excel), and/or HTML Files';
cap[9] = 'Create Multiple Password Files With One Quick Setup';
cap[10] = 'Download FREE Dictionary Files to Help Prevent Your Passwords from Being Cracked and to use to Create Random Words With';
cap[11] = 'Select Any Dictionary File To Compare Against Your Created Passwords and to Create Random Words With';
cap[12] = 'Manually Verify Passwords Against Dictionary Files';
cap[13] = 'Provides Many Tools To Manage Your Passwords';
cap[14] = 'Edit MS Access Database Password Files Directly Without Requiring MS Access Itself';
cap[15] = 'View of Generated Password File Within MS Access';
cap[16] = 'View of Generated Text File Within MS Notepad';
cap[17] = 'View of CSV File Within MS Excel';
cap[18] = 'View of Generated HTML File Within MS Internet Explorer';

// ------------- end of captions -----------------------//


//--------------------------------------------------------
//  (4) SET THE AUTOSHOW DELAY TIME    
//  This is the minimum amount of time between changing of 
//  slides when we are in automatic mode. Values are in 
//  milliseconds, multiple the number of seconds desired
//  by 1000. If you are unsure, try a value of 8000.

var delay_time = 8000;


//--------------------------------------------------------
//  (5) SET THE BACKGROUND MODE   
//  This variable indicates whether to use a light background
//  for the slide screen (light_mode = true;) or a dark
//  background (light_mode = false;)

var light_mode = true;

//--------------------------------------------------------
//  (6) SET THE CAPTION LOCATION  
//  This variable controls the placement of the caption
//  relative to the picture. Valid values are

//    1   above the picture  
//    2   left of the picture
//    3   right of the picture
//    4   below the picture

var cap_align = 4;

//--------------------------------------------------------
//  (7) SET THE STARTING SLIDE 
//  This variable can indicate which is the first slide
//  to show. the default is 0 which starts with the title
//  page

var show_start = 0;

//--------------------------------------------------------
// END OF CONFIGURATION AREA
//--------------------------------------------------------

