// required entry to load the cookies (for older browsers)
  LoadIt ();               // force load of data - REQUIRED!
  if (root.xx_id == "") {  // REQUIRED!
// set-list for any cart-wide options here ____________________ Need to adjust IF statement here for weight - need to check variables 
SetCartSH (0, 1, 10, 7, 11.50, 8,13,9,14.50,10,16,11,17.50,12,19,13,20.5,14,23,15,24.5,16,26,17,27.50,18,29,19,30.50,20,32,21,33.50,22,35,23,36.50,24,38,25,39.50,26,41,27,42.50,28,44,29,45.50,30,47,31,48.50,32,50,33,51.50,34,53,35,54.50,36,56,37,57.50,38,59,39,60.50,40,62 ); //regular shipping
SetCartHN (0,1,15);
SetCartSH (1, 1, 30, 6, 32,7,34, 8, 36, 9, 38, 10, 40, 11,42,12,44,13,46,14,48,15,50,16,52,17,54,18,56,19,58,20,60,21,62,22,64,23,66,24,68,25,70,26,72,27,74,28,76,29,78,30,80,31,82,32,84,33,86,34,88,35,90,36,92,37,94,38,96,39,98,40,100); //overnight
SetCartHN (1,1,20);
SetCartHN(2,1,0);
SetCartHN(3,1,20); // This adds 20 charge to frozen items 11/28/08 kathi w
SetCartSH(2,1,0); // No charge for Gift Certificates

// set cart display options, and internal PayPal options
    root.xx_cc   = off;   // display credit card line
    root.xx_cdmp = off;  // root diagnostic cookie dump (leave off)
    root.xx_chkbx= on;   // agreement checkbox
    root.xx_coup = off;   // ask for coupon code on cart page
    root.xx_cval = "xcoup1,xcoup2"; // coupon values
    root.xx_cdis = "10,0"; // corresponding coupon percent discounts
    root.xx_camt = "0,1";  // 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  = off;   // 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  = off;   // Make mail/fax form available in cart
    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   = on;   // 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_bn   = "";   // business code, or null
    root.xx_can  = "";   // place for PayPal cancel return path
    root.xx_cbt  = "";   // continue button text, or null
    root.xx_cur  = "USD";// enter default currency code (or null)
    root.xx_id   = "stevesmeatmarket@msn.com";  // PayPal ID
    root.xx_lc   = "US"; // enter default country code (or null)
    root.xx_ret  = "";   // return
    root.xx_sty  = "";   // place for PayPal style
// required entry to store stuff off
    root.store ();       // required entry!!
  }                      // REQUIRED!
