// required entry to load the cookies (for older browsers)
  LoadIt ();           // force load of data
// set-list for any cart-wide options here
  var SAH = new Array();
  SAH[0] = 0;
  //SAH[1] = 1;
  //SAH[2]= 3.95;
  var qc = 1;
  var ac = 3.95
	  for (var i=1; i<202; i=i+2) {

			SAH[i] = qc;
		SAH[i+1] = ac;
		qc = qc+1;
		ac = ac + 0.50;

		}
SetCartSH (0);  // $1 handling charge for whole cart.

/*
SAH.length = 0;

  SAH[0] = 1;
  //SAH[1] = 1;
  //SAH[2]= 3.95;
  var qc1 = 1;
  var ac1 = 4.95
	  for (var j=1; j<102; j=j+2) {

			SAH[j] = qc1;
		SAH[j+1] = ac1;
		qc1 = qc1+1;
		ac1 = ac1 + 0.75;

		}

//SetCartSH1 (1);  // $1 handling charge for whole cart.
  */

// set cart display options, and internal PayPal options
  root.xx_cc   = on;   // display credit card line
  root.xx_cdmp = off;  // root diagnostic cookie dump (leave off)
  root.xx_chkbx= off;   // agreement checkbox
  root.xx_coup = on;   // ask for coupon code on cart page
  root.xx_cval = "seminar06,client06"; // coupon values
  root.xx_cdis = "30,100"; // corresponding coupon percent discounts
  root.xx_camt = "0,0";  // corresponding coupon amount discount
  //root.xx_cval = "buckner,client987"; // coupon values
  //root.xx_cdis = "20,50"; // corresponding coupon percent discounts
  //root.xx_camt = "0,0";  // corresponding coupon amount discount
  root.xx_dadd = on;   // display cart when add-cart is clicked.
  root.xx_gwbx = off;   // gift wrapping checkbox
  root.xx_gwcg = 10;   // giftwrapping charge per item (if selected)
  root.xx_img  = on;   // show images in cart (SetImg)
  root.xx_mamt = 0;    // minimum amount of order, or zero.
  root.xx_mqty = 1;    // minimum quantity of order, or zero.
  root.xx_pc   = off;   // display product category in item list
  root.xx_prt  = on;   // print email line and addr form
  root.xx_ship = off;   // ask user for shipping options
  root.xx_siz  = on;   // for img, on = resize, off = use orig size
  root.xx_sum  = off;   // display product cat summaries
  root.xx_tax  = on;   // ask user for tax options
  root.xx_uas  = off;  // UPS added air surcharge for fuel active
  root.xx_uasp = 9.5;  // UPS air surcharge percent (if active).
  root.xx_wt   = off;   // display weight totals
  root.xx_wtent= "";   // default entry = ounces, "gm" = grams.
  root.xx_wtrup= 10;   // rounding value - oz always up to lbs
                       //  gm rounds up to these grams.
// place for user-specific options
  root.xx_can  = "";   // place for PayPal cancel return path
  root.xx_cur  = "USD";// enter default currency code (or null)
  root.xx_id   = "question@planyourlegacy.com";  // PayPal ID
  root.xx_lc   = "US"; // enter default country code (or null)
  root.xx_ret  = "http://www.colgancapital.com/";   // place for PayPal return path
  root.xx_sty  = "";   // place for PayPal page style
// required entry to store stuff off
  root.store ();       // required entry!!
