/**
 * arcconfig.js
 *
 * General configuration of the ARC client manager for all pages of the
 * allurent-checkout application.
 */

//========================================================================
// Configuration of Flash player version and download rate qualification.
//========================================================================

//
// Specify the minimum Flash Player version required by the ARC Client.
//
arc.setFlashVersionRequired("9");

//
// Specify the minimum download rate, in units of kilobytes per second, 
// required to download the ARC Client in an acceptable amount of time.
//
arc.config.baseDownloadRate=5;

//  on/off switch 
var arcEnabled=true;


// sniff swf url  (required by arc lib)
ARC_SNIFF_URL="/arc/Sniff.swf";

// bandwidth measure resource url (required by arc lib)
ARC_MEASURE_URL="/arc/allurentLogo.jpg";

// the client swf  (required by arc client)
ARC_SWF_URL=(document.location.search.indexOf("debug=true")==-1)?
    GSI.appCartDomain + "/arc/AppCart.swf": GSI.appCartDomain + "/arc/AppCart-debug.swf";

// config   (required by arc client)
ARC_SWF_CONFIG="/arc/config.jsp";

// help   (required by arc client)
//ARC_SWF_HELP_CONFIG="/arc20/appresources.xml";

// rich checkout page
ARC_CHECKOUT_URL="/coreg/index.jsp?step=checkout";

//html checkout page
ARC_CHECKOUT_URL_HTML="/coreg/index.jsp?step=checkout";

var activeArcClients = new Array();
// client switches
activeArcClients["inlineCart"]=true;
activeArcClients["checkout"]=false;

// for use by navigation redirection methods
var arc_url_dictionary = new Array();
/*
arc_url_dictionary['faq'] = "http://SITE/PAGE.html";
*/