/**
*   settings.js is a designer-editable file (after the 'edit here' comment)
*	it provides a central place to make settings
*	with the idea that other js files do not get modified unneccesarily
*
*	settings.js should be the first js file called in the head
*
*	where appropriate,settings should be prefixed with the name of the js file
*	in which they are used.
*
*	when a designer needs to define a new setting it should be added to the settings here
*	with a comment describing briefly what its is for
*
*	settings are viewed as constants
*	js files should not modify the settings as other js file may depend on the original setting
*	
*   compatible: all
*	@author: jon halle
*
*	$Id: settings.js,v 2.3 2004/10/20 14:04:08 jonh Exp $
*/

var CTAD_SETTINGS=new Array();

//#####################################
// edit here
//#####################################


//control whether developer error alerts popup
CTAD_SETTINGS["functions_debug"]=true;

//how many times a  question is tried before the actual answer is shown
//if check_answer is called with the "show" flag
CTAD_SETTINGS["question_attempts_before_show"]=3;	

//how many times a test question is tried before the actual answer is shown
//if check_answer is called with the "next" flag
CTAD_SETTINGS["question_attempts_before_next"]=2;	

//how many times a question is tried before the model answer is shown
//if check_answer is called with the "model" flag
CTAD_SETTINGS["question_attempts_before_model"]=1;

//set to true to use frameset for persistence even if cookies are enabled
CTAD_SETTINGS["persist_force_frameset"]=true;	
												

