function calc_info()
{
  //set variables to zero
  var vcalories = 0;
  var vcalories_from_fat = 0;
  var vtotal_fat = 0;
  var vDVtotal_fat = 0;
  var vsat_fat = 0;
  var vDVsat_fat = 0;
  var vcholesterol = 0;
  var vDVcholesterol = 0;
  var vsodium = 0;
  var vDVsodium = 0;
  var vcarbs = 0;
  var vDVcarbs = 0;
  var vdietary_fiber = 0;
  var vDVdietary_fiber = 0;
  var vsugars = 0;
  var vprotein = 0;
  var vvit_a = 0;
  var vvit_c = 0;
  var vcalcium = 0;
  var viron = 0;
  var vingredients = "";

  if (document.myForm.romaine.checked == true) {
	vcalories = vcalories + 39.2;
    vtotal_fat = vtotal_fat + 0.57;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 22.8;
    vcarbs = vcarbs + 6.75;
    vdietary_fiber = vdietary_fiber + 4.86;
    vprotein = vprotein + 4.63;
	vingredients = vingredients + "Romaine, ";
  }
  
    if (document.myForm.romaine2.checked == true) {
    vcalories = vcalories + 0.47;
    vtotal_fat = vtotal_fat + 0.01;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.27;
    vcarbs = vcarbs + 0.08;
    vdietary_fiber = vdietary_fiber + 0.06;
    vprotein = vprotein + 0.06;
	vingredients = vingredients + "Romaine, ";
  }


  if (document.myForm.basmatirice.checked == true) {
	vcalories = vcalories + 287;
    vtotal_fat = vtotal_fat + 0.73;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 7.56;
    vcarbs = vcarbs + 62.37;
    vdietary_fiber = vdietary_fiber + 0.99;
    vprotein = vprotein + 5.76;
	vingredients = vingredients + "Brown Rice, ";
  }
  
    if (document.myForm.basmatirice2.checked == true) {
    vcalories = vcalories + 128;
    vtotal_fat = vtotal_fat + 0.33;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 3.36;
    vcarbs = vcarbs + 27.72;
    vdietary_fiber = vdietary_fiber + 0.44;
    vprotein = vprotein + 2.56;
	vingredients = vingredients + "Brown Rice, ";
  }
  
    if (document.myForm.basmatirice3.checked == true) {
    vcalories = vcalories + 128;
    vtotal_fat = vtotal_fat + 0.33;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 3.36;
    vcarbs = vcarbs + 27.72;
    vdietary_fiber = vdietary_fiber + 0.44;
    vprotein = vprotein + 2.56;
	vingredients = vingredients + "Brown Rice, ";
  }
  
      if (document.myForm.basmatirice4.checked == true) {
    vcalories = vcalories + 255;
    vtotal_fat = vtotal_fat + 0.65;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 6.72;
    vcarbs = vcarbs + 55.44;
    vdietary_fiber = vdietary_fiber + 0.88;
    vprotein = vprotein + 5.12;
	vingredients = vingredients + "Brown Rice, ";
  }

  if (document.myForm.vegetable.checked == true) {
    vcalories = vcalories + 26;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 1645;
    vcarbs = vcarbs + 5.3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 3.5;
	vingredients = vingredients + "100% Vegetable Broth, ";
  }

  if (document.myForm.spinach.checked == true) {
    vcalories = vcalories + 32.25;
    vtotal_fat = vtotal_fat + 0.55;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 110;
    vcarbs = vcarbs + 5.1;
    vdietary_fiber = vdietary_fiber + 3.1;
    vprotein = vprotein + 4;
	vingredients = vingredients + "Spinach, ";
  }
  
    if (document.myForm.spinach2.checked == true) {
    vcalories = vcalories + 4.52;
    vtotal_fat = vtotal_fat + 0.08;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 15.4;
    vcarbs = vcarbs + 0.71;
    vdietary_fiber = vdietary_fiber + 0.43;
    vprotein = vprotein + 0.56;
	vingredients = vingredients + "Spinach, ";
  }



    if (document.myForm.classicchicken.checked == true) {
    vcalories = vcalories + 67;
    vtotal_fat = vtotal_fat + 2.4;
    vsat_fat = vsat_fat + 0.7;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 1100;
    vcarbs = vcarbs + 1.6;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 8.5;
	vingredients = vingredients + "Classic Chicken Broth, ";
  }

  if (document.myForm.mesclunmix.checked == true) {
    vcalories = vcalories + 37;
    vtotal_fat = vtotal_fat + 1.75;
    vsat_fat = vsat_fat + 1.75;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.5;
    vcarbs = vcarbs + 5.25;
    vdietary_fiber = vdietary_fiber + 1.75;
    vprotein = vprotein + 1.75;
	vingredients = vingredients + "Freshii Mix, ";
  }
  
    if (document.myForm.mesclunmix2.checked == true) {
    vcalories = vcalories + 5.18;
    vtotal_fat = vtotal_fat + 0.25;
    vsat_fat = vsat_fat + 0.25;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.07;
    vcarbs = vcarbs + 0.74;
    vdietary_fiber = vdietary_fiber + 0.25;
    vprotein = vprotein + 0.25;
	vingredients = vingredients + "Freshii Mix, ";
  }
  

  if (document.myForm.spicylemongrass.checked == true) {
    vcalories = vcalories + 23.56;
    vtotal_fat = vtotal_fat + 1.17;
    vsat_fat = vsat_fat + 0.34;
    vcholesterol = vcholesterol + 5.60;
    vsodium = vsodium + 1386;
    vcarbs = vcarbs + 1.63;
    vdietary_fiber = vdietary_fiber + 1.04;
    vprotein = vprotein + 1.59;
	vingredients = vingredients + "Spicy Lemongrass, ";
  }

  if (document.myForm.ricenoodles.checked == true) {
    vcalories = vcalories + 486;
    vtotal_fat = vtotal_fat + 0.95;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 9.35;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 110;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 11.2;
	vingredients = vingredients + "Rice Noodles, ";
  }
  
    if (document.myForm.allnaturalchicken.checked == true) {
    vcalories = vcalories + 60;
    vtotal_fat = vtotal_fat + 1;
    vsat_fat = vsat_fat + 0.3;
    vcholesterol = vcholesterol + 24;
    vsodium = vsodium + 280;
    vcarbs = vcarbs + 1.5;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 14;
	vingredients = vingredients + "Roasted Chicken, ";
  }

    if (document.myForm.allnaturalchicken2.checked == true) {
    vcalories = vcalories + 120;
    vtotal_fat = vtotal_fat + 2;
    vsat_fat = vsat_fat + 0.6;
    vcholesterol = vcholesterol + 48;
    vsodium = vsodium + 560;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 4;
    vprotein = vprotein + 28;
	vingredients = vingredients + "Roasted Chicken (Double Protein), ";
  }

  if (document.myForm.beansprouts.checked == true) {
    vcalories = vcalories + 5.9;
    vtotal_fat = vtotal_fat + 0.25;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 2.8;
    vcarbs = vcarbs + 1.17;
    vdietary_fiber = vdietary_fiber + 0.22;
    vprotein = vprotein + 0.56;
	vingredients = vingredients + "Bean Sprouts, ";
  }

  if (document.myForm.cucumbers.checked == true) {
    vcalories = vcalories + 4.2;
    vtotal_fat = vtotal_fat + 0.03;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.56;
    vcarbs = vcarbs + 1.01;
    vdietary_fiber = vdietary_fiber + 0.2;
    vprotein = vprotein + 0.18;
	vingredients = vingredients + "Cucumbers, ";
  }

  if (document.myForm.whitemushrooms.checked == true) {
    vcalories = vcalories + 7;
    vtotal_fat = vtotal_fat + 0.09;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 1.12;
    vcarbs = vcarbs + 1.14;
    vdietary_fiber = vdietary_fiber + 0.36;
    vprotein = vprotein + 0.81;
	vingredients = vingredients + "White Mushrooms, ";
  }

  if (document.myForm.albacoretuna.checked == true) {
    vcalories = vcalories + 61;
    vtotal_fat = vtotal_fat + 1.1;
    vsat_fat = vsat_fat + 0.3;
    vcholesterol = vcholesterol + 31;
    vsodium = vsodium + 168;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 14.5;
	vingredients = vingredients + "Albacore Tuna, ";
  }

  if (document.myForm.albacoretuna2.checked == true) {
    vcalories = vcalories + 122;
    vtotal_fat = vtotal_fat + 2.2;
    vsat_fat = vsat_fat + 0.6;
    vcholesterol = vcholesterol + 62;
    vsodium = vsodium + 336;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 29;
	vingredients = vingredients + "Albacore Tuna (Double Protein), ";
  }


if (document.myForm.portobellomushrooms.checked == true) {
    vcalories = vcalories + 7.25;
    vtotal_fat = vtotal_fat + 2.5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 3.25;
    vcarbs = vcarbs + 1.25;
    vdietary_fiber = vdietary_fiber + 0.4;
    vprotein = vprotein + 0.7;
	vingredients = vingredients + "Grilled Portobello Mushrooms, ";
  }

 if (document.myForm.buffalochicken.checked == true) {
    vcalories = vcalories + 62;
    vtotal_fat = vtotal_fat + 1.43;
    vsat_fat = vsat_fat + 0.3;
    vcholesterol = vcholesterol + 24;
    vsodium = vsodium + 515;
    vcarbs = vcarbs + 1.78;
    vdietary_fiber = vdietary_fiber + 2.1;
    vprotein = vprotein + 14.1;
	vingredients = vingredients + "Buffalo Chicken, ";
  }
  
   if (document.myForm.buffalochicken2.checked == true) {
    vcalories = vcalories + 123;
    vtotal_fat = vtotal_fat + 2.86;
    vsat_fat = vsat_fat + 0.6;
    vcholesterol = vcholesterol + 48;
    vsodium = vsodium + 1030;
    vcarbs = vcarbs + 3.56;
    vdietary_fiber = vdietary_fiber + 4.2;
    vprotein = vprotein + 28.2;
	vingredients = vingredients + "Buffalo Chicken (Double Protein), ";
  }
  
   if (document.myForm.bteriyakichicken.checked == true) {
    vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 1;
    vsat_fat = vsat_fat + 0.3;
    vcholesterol = vcholesterol + 24.09;
    vsodium = vsodium + 575;
    vcarbs = vcarbs + 5.17;
    vdietary_fiber = vdietary_fiber + 2.07;
    vprotein = vprotein + 14.47;
	vingredients = vingredients + "Teriyaki Chicken, ";
  }
  
     if (document.myForm.bteriyakichicken2.checked == true) {
    vcalories = vcalories + 140;
    vtotal_fat = vtotal_fat + 2;
    vsat_fat = vsat_fat + 0.6;
    vcholesterol = vcholesterol + 48.18;
    vsodium = vsodium + 1150;
    vcarbs = vcarbs + 10.34;
    vdietary_fiber = vdietary_fiber + 4.14;
    vprotein = vprotein + 28.94;
	vingredients = vingredients + "Teriyaki Chicken (Double Protein), ";
  }


 if (document.myForm.cajunchicken.checked == true) {
    vcalories = vcalories + 64;
    vtotal_fat = vtotal_fat + 1.06;
    vsat_fat = vsat_fat + 0.3;
    vcholesterol = vcholesterol + 24;
    vsodium = vsodium + 373;
    vcarbs = vcarbs + 2.32;
    vdietary_fiber = vdietary_fiber + 2.08;
    vprotein = vprotein + 14.16;
	vingredients = vingredients + "Cajun Chicken, ";  }
	
	 if (document.myForm.cajunchicken2.checked == true) {
    vcalories = vcalories + 129;
    vtotal_fat = vtotal_fat + 2.12;
    vsat_fat = vsat_fat + 0.62;
    vcholesterol = vcholesterol + 48;
    vsodium = vsodium + 746;
    vcarbs = vcarbs + 4.64;
    vdietary_fiber = vdietary_fiber + 4.16;
    vprotein = vprotein + 28.32;
	vingredients = vingredients + "Cajun Chicken (Double Protein), ";  }
  
 if (document.myForm.bbqchicken.checked == true) {
    vcalories = vcalories + 73;
    vtotal_fat = vtotal_fat + 1.04;
    vsat_fat = vsat_fat + 0.31;
    vcholesterol = vcholesterol + 24;
    vsodium = vsodium + 365;
    vcarbs = vcarbs + 4.58;
    vdietary_fiber = vdietary_fiber + 2.09;
    vprotein = vprotein + 14.1;
	vingredients = vingredients + "BBQ Chicken, ";  }

 if (document.myForm.bbqchicken2.checked == true) {
    vcalories = vcalories + 146;
    vtotal_fat = vtotal_fat + 2.08;
    vsat_fat = vsat_fat + 0.62;
    vcholesterol = vcholesterol + 48;
    vsodium = vsodium + 730;
    vcarbs = vcarbs + 9.16;
    vdietary_fiber = vdietary_fiber + 4.18;
    vprotein = vprotein + 28.2;
	vingredients = vingredients + "BBQ Chicken (Double Protein), ";  }


  if (document.myForm.greenapples.checked == true) {
    vcalories = vcalories + 21;
    vtotal_fat = vtotal_fat + 0.07;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.28;
    vcarbs = vcarbs + 5.58;
    vdietary_fiber = vdietary_fiber + 0.75;
    vprotein = vprotein + 0.1;
	vingredients = vingredients + "Green Apples, ";
  }

  if (document.myForm.eggwhites.checked == true) {
    vcalories = vcalories + 11;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 35;
    vcarbs = vcarbs + 0.10;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 2.62;
	vingredients = vingredients + "Egg Whites, ";
  }

  if (document.myForm.brocoli.checked == true) {
    vcalories = vcalories + 9.5;
    vtotal_fat = vtotal_fat + 0.1;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 9.24;
    vcarbs = vcarbs + 1.86;
    vdietary_fiber = vdietary_fiber + 0.67;
    vprotein = vprotein + 0.79;
	vingredients = vingredients + "Broccoli, ";
  }
  
  if (document.myForm.redonions.checked == true) {
    vcalories = vcalories + 11.77;
    vtotal_fat = vtotal_fat + 0.02;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.84;
    vcarbs = vcarbs + 2.83;
    vdietary_fiber = vdietary_fiber + 0.39;
    vprotein = vprotein + 0.25;
	vingredients = vingredients + "Red Onions, ";
  }

  if (document.myForm.grilledtofu.checked == true) {
    vcalories = vcalories + 50;
    vtotal_fat = vtotal_fat + 4;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 4;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 5;
	vingredients = vingredients + "Grilled Tofu, ";
  }
  
    if (document.myForm.grilledtofu2.checked == true) {
    vcalories = vcalories + 100;
    vtotal_fat = vtotal_fat + 8;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 8;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 10;
	vingredients = vingredients + "Grilled Tofu (Double Protein), ";
  }

  if (document.myForm.carrots.checked == true) {
    vcalories = vcalories + 12;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 9.8;
    vcarbs = vcarbs + 2.8;
    vdietary_fiber = vdietary_fiber + 0.67;
    vprotein = vprotein + 0.35;
	vingredients = vingredients + "Carrots, ";
  }

  if (document.myForm.roastedpeppers.checked == true) {
    vcalories = vcalories + 6.5;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 22.6;
    vcarbs = vcarbs + 1.08;
    vdietary_fiber = vdietary_fiber + 0.2;
    vprotein = vprotein + 0.2;
	vingredients = vingredients + "Roasted Peppers, ";
  }
  
    if (document.myForm.smokedturkey.checked == true) {
    vcalories = vcalories + 44.8;
    vtotal_fat = vtotal_fat + 0.56;
    vsat_fat = vsat_fat + 0.28;
    vcholesterol = vcholesterol + 25.2;
    vsodium = vsodium + 352.80;
    vcarbs = vcarbs + 1.12;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 9.52;
	vingredients = vingredients + "Oven Roasted Turkey, ";
  }

    if (document.myForm.smokedturkey2.checked == true) {
    vcalories = vcalories + 89.6;
    vtotal_fat = vtotal_fat + 1.12;
    vsat_fat = vsat_fat + 0.56;
    vcholesterol = vcholesterol + 50.4;
    vsodium = vsodium + 705.60;
    vcarbs = vcarbs + 2.24;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 19.04;
	vingredients = vingredients + "Oven Roasted Turkey (Double Protein), ";
  }
  
    if (document.myForm.mango.checked == true) {
    vcalories = vcalories + 18.2;
    vtotal_fat = vtotal_fat + 0.08;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.56;
    vcarbs = vcarbs + 4.76;
    vdietary_fiber = vdietary_fiber + 0.5;
    vprotein = vprotein + 0.14;
	vingredients = vingredients + "Mango, ";
  }
  
      if (document.myForm.edamame.checked == true) {
    vcalories = vcalories + 41.2
    vtotal_fat = vtotal_fat + 1.9;
    vsat_fat = vsat_fat + 0.28;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 4.2;
    vcarbs = vcarbs + 3.1;
    vdietary_fiber = vdietary_fiber + 1.2;
    vprotein = vprotein + 3.63;
	vingredients = vingredients + "Edamame, ";
  }
 
 if (document.myForm.blueberries.checked == true) {
    vcalories = vcalories + 16;
    vtotal_fat = vtotal_fat + 0.09;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.28;
    vcarbs = vcarbs + 4.05;
    vdietary_fiber = vdietary_fiber + 0.73;
    vprotein = vprotein + 0.2;
	vingredients = vingredients + "Blueberries, ";
  }
  
  if (document.myForm.strawberries.checked == true) {
    vcalories = vcalories + 8.4;
    vtotal_fat = vtotal_fat + 0.1;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.28;
    vcarbs = vcarbs + 1.97;
    vdietary_fiber = vdietary_fiber + 0.61;
    vprotein = vprotein + 0.17;
	vingredients = vingredients + "Strawberries, ";
  }
  
    if (document.myForm.cilantro.checked == true) {
    vcalories = vcalories + 7;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 14;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Cilantro, ";
  }
  
  
    if (document.myForm.celery.checked == true) {
    vcalories = vcalories + 8.4;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 24.66;
    vcarbs = vcarbs + 0.7;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Celery, ";
  }

  
    if (document.myForm.chickpeas.checked == true) {
    vcalories = vcalories + 23.5;
    vtotal_fat = vtotal_fat + 0.35;
    vsat_fat = vsat_fat + 0.04;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 44;
    vcarbs = vcarbs + 3.8;
    vdietary_fiber = vdietary_fiber + 0.8;
    vprotein = vprotein + 1.25;
	vingredients = vingredients + "Chick Peas, ";
  }
  
    if (document.myForm.sundriedtomatoes.checked == true) {
    vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 1;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 14;
    vdietary_fiber = vdietary_fiber + 3;
    vprotein = vprotein + 3;
	vingredients = vingredients + "Sundried Tomatoes, ";
  }


  
    if (document.myForm.corn.checked == true) {
    vcalories = vcalories + 28;
    vtotal_fat = vtotal_fat + 0.14;
    vsat_fat = vsat_fat + 0.03;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0.85;
    vcarbs = vcarbs + 5.6;
    vdietary_fiber = vdietary_fiber + 0.56;
    vprotein = vprotein + 0.28;
	vingredients = vingredients + "Sweet Corn, ";
  }
  
    if (document.myForm.tomatoes.checked == true) {
    vcalories = vcalories + 5.9;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 2.52;
    vcarbs = vcarbs + 1.37;
    vdietary_fiber = vdietary_fiber + 0.34;
    vprotein = vprotein + 0.27;
	vingredients = vingredients + "Tomatoes, ";
  }
  
    if (document.myForm.grilledsteak.checked == true) {
    vcalories = vcalories + 110;
    vtotal_fat = vtotal_fat + 1.5;
    vsat_fat = vsat_fat + 0.5;
    vcholesterol = vcholesterol + 20;
    vsodium = vsodium + 530;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 21;
	vingredients = vingredients + "Grilled Salmon, ";
  }
  


  if (document.myForm.feta.checked == true) {
    vcalories = vcalories + 90;
    vtotal_fat = vtotal_fat + 8;
    vsat_fat = vsat_fat + 5;
    vcholesterol = vcholesterol + 24;
    vsodium = vsodium + 430;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 5;
	vingredients = vingredients + "Feta, ";
  }
  
    if (document.myForm.avocado.checked == true) {
    vcalories = vcalories + 90.75
    vtotal_fat = vtotal_fat + 8.31;
    vsat_fat = vsat_fat + 1.25;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 4;
    vcarbs = vcarbs + 4.84;
    vdietary_fiber = vdietary_fiber + 3.8;
    vprotein = vprotein + 1.14;
	vingredients = vingredients + "Avocado, ";
  }
  
  
    if (document.myForm.toastedalmonds.checked == true) {
    vcalories = vcalories + 170;
    vtotal_fat = vtotal_fat + 15;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 7;
    vdietary_fiber = vdietary_fiber + 3;
    vprotein = vprotein + 7;
	vingredients = vingredients + "Roasted Almonds, ";
  }
  
    if (document.myForm.goatcheese.checked == true) {
    vcalories = vcalories + 26;
    vtotal_fat = vtotal_fat + 2;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 8;
    vsodium = vsodium + 35;
    vcarbs = vcarbs + 0.3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1.5;
	vingredients = vingredients + "Goat Cheese, ";
  }
  
    if (document.myForm.crumbledegg.checked == true) {
    vcalories = vcalories + 73;
    vtotal_fat = vtotal_fat + 4.94
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 186;
    vsodium = vsodium + 63;
    vcarbs = vcarbs + 0.29;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 6.16;
	vingredients = vingredients + "Sliced Egg, ";
  }
  
    if (document.myForm.toastedsunflowerseeds.checked == true) {
    vcalories = vcalories + 180;
    vtotal_fat = vtotal_fat + 15;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 6;
    vdietary_fiber = vdietary_fiber + 3;
    vprotein = vprotein + 7;
	vingredients = vingredients + "Toasted Sunflower Seeds, ";
  }
  
    if (document.myForm.jackcheddar.checked == true) {
    vcalories = vcalories + 107.67;
    vtotal_fat = vtotal_fat + 8.89;
    vsat_fat = vsat_fat + 5.68;
    vcholesterol = vcholesterol + 27.27;
    vsodium = vsodium + 205.11;
    vcarbs = vcarbs + 0.454;
    vdietary_fiber = vdietary_fiber + 0.426;
    vprotein = vprotein + 6.875;
	vingredients = vingredients + "Jack & Cheddar, ";
  }
  
    if (document.myForm.kalamataolives.checked == true) {
    vcalories = vcalories + 48;
    vtotal_fat = vtotal_fat + 4.6;
    vsat_fat = vsat_fat + 1.2;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 520;
    vcarbs = vcarbs + 1.6;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.4;
	vingredients = vingredients + "Kalamata Olives, ";
  }
  
    if (document.myForm.driedcranberries.checked == true) {
    vcalories = vcalories + 90;
    vtotal_fat = vtotal_fat + 0.5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 21;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Dried Cranberries, ";
  }
  
    if (document.myForm.walnuts.checked == true) {
    vcalories = vcalories + 210;
    vtotal_fat = vtotal_fat + 19;
    vsat_fat = vsat_fat + 8;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 5;
	vingredients = vingredients + "Walnuts, ";
  }
  
    if (document.myForm.shavedparmesan.checked == true) {
    vcalories = vcalories + 113;
    vtotal_fat = vtotal_fat + 9.38;
    vsat_fat = vsat_fat + 6;
    vcholesterol = vcholesterol + 33.05;
    vsodium = vsodium + 242.3;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 7.23;
	vingredients = vingredients + "Shaved Parmesan, ";
  }
  
    if (document.myForm.bluecheese.checked == true) {
    vcalories = vcalories + 100;
    vtotal_fat = vtotal_fat + 9;
    vsat_fat = vsat_fat + 6;
    vcholesterol = vcholesterol + 30;
    vsodium = vsodium + 450;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 6;
	vingredients = vingredients + "Blue Cheese, ";
  }
  
    if (document.myForm.smokedbacon.checked == true) {
    vcalories = vcalories + 225;
    vtotal_fat = vtotal_fat + 16;
    vsat_fat = vsat_fat + 5;
    vcholesterol = vcholesterol + 54;
    vsodium = vsodium + 630;
    vcarbs = vcarbs + 0.6;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 19.5;
	vingredients = vingredients + "Smoked Bacon, ";
  }
  
      if (document.myForm.smokedbacon2.checked == true) {
    vcalories = vcalories + 450;
    vtotal_fat = vtotal_fat + 32;
    vsat_fat = vsat_fat + 10;
    vcholesterol = vcholesterol + 108;
    vsodium = vsodium + 1260;
    vcarbs = vcarbs + 1.2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 39;
	vingredients = vingredients + "Smoked Bacon (Double Protein), ";
  }

  if (document.myForm.crispynoodles.checked == true) {
    vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 180;
    vcarbs = vcarbs + 15;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 3;
	vingredients = vingredients + "Crispy Wonton, ";
  }
  
    if (document.myForm.housecroutons.checked == true) {
    vcalories = vcalories + 252;
    vtotal_fat = vtotal_fat + 9.5;
    vsat_fat = vsat_fat + 4;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 582;
    vcarbs = vcarbs + 32;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 6.1;
	vingredients = vingredients + "House Croutons, ";
  }
  
    if (document.myForm.balsamicvinaigrette.checked == true) {
    vcalories = vcalories + 76;
    vtotal_fat = vtotal_fat + 8.23;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 30;
    vcarbs = vcarbs + 1.22;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.03;
	vingredients = vingredients + "Balsamic Vinaigrette (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.balsamicvinaigrette2.checked == true) {
    vcalories = vcalories + 152;
    vtotal_fat = vtotal_fat + 16.46;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 60;
    vcarbs = vcarbs + 2.43;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.05;
	vingredients = vingredients + "Balsamic Vinaigrette (half amount for salads & bowls), ";
  }
  
        if (document.myForm.balsamicvinaigrette3.checked == true) {
    vcalories = vcalories + 228;
    vtotal_fat = vtotal_fat + 24.69;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 90;
    vcarbs = vcarbs + 3.65;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.08;
	vingredients = vingredients + "Balsamic Vinaigrette (regular amount for salads & bowls), ";
  }
  
          if (document.myForm.balsamicvinaigrette4.checked == true) {
    vcalories = vcalories + 380;
    vtotal_fat = vtotal_fat + 41.14;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 150;
    vcarbs = vcarbs + 6.08;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.13;
	vingredients = vingredients + "Balsamic Vinaigrette (heavy amount for salads & bowls), ";
  }
  
          if (document.myForm.balsamicvinaigrette5.checked == true) {
    vcalories = vcalories + 456;
    vtotal_fat = vtotal_fat + 49.38;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 180;
    vcarbs = vcarbs + 7.29;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.15;
	vingredients = vingredients + "Balsamic Vinaigrette (on the side), ";
  }
  
    if (document.myForm.caesardressing.checked == true) {
    vcalories = vcalories + 84;
    vtotal_fat = vtotal_fat + 9.34;
    vsat_fat = vsat_fat + 0.47;
    vcholesterol = vcholesterol + 0.94;
    vsodium = vsodium + 56;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.28;
	vingredients = vingredients + "Caesar Dressing (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.caesardressing2.checked == true) {
    vcalories = vcalories + 168;
    vtotal_fat = vtotal_fat + 18.68;
    vsat_fat = vsat_fat + 0.94;
    vcholesterol = vcholesterol + 1.87;
    vsodium = vsodium + 112;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.56;
	vingredients = vingredients + "Caesar Dressing (half amount for salads & bowls), ";
  }
  
      if (document.myForm.caesardressing3.checked == true) {
    vcalories = vcalories + 252;
    vtotal_fat = vtotal_fat + 28.02;
    vsat_fat = vsat_fat + 1.88;
    vcholesterol = vcholesterol + 2.81;
    vsodium = vsodium + 168;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.84;
	vingredients = vingredients + "Caesar Dressing (regular amount for salads & bowls), ";
  }
  
      if (document.myForm.caesardressing4.checked == true) {
    vcalories = vcalories + 420;
    vtotal_fat = vtotal_fat + 46.7;
    vsat_fat = vsat_fat + 2.34;
    vcholesterol = vcholesterol + 4.67;
    vsodium = vsodium + 280;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1.4;
	vingredients = vingredients + "Caesar Dressing (heavy amount for salads & bowls), ";
  }
  
      if (document.myForm.caesardressing5.checked == true) {
    vcalories = vcalories + 504;
    vtotal_fat = vtotal_fat + 56.04;
    vsat_fat = vsat_fat + 2.82;
    vcholesterol = vcholesterol + 5.61;
    vsodium = vsodium + 356;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1.68;
	vingredients = vingredients + "Caesar Dressing (on the side), ";
  }
  
    if (document.myForm.evoo.checked == true) {
    vcalories = vcalories + 16.4;
    vtotal_fat = vtotal_fat + 1.31;
    vsat_fat = vsat_fat + 0.19;
    vcholesterol = vcholesterol + 1;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.04;
	vingredients = vingredients + "Extra Virgin Olive Oil & Aged Balsamic Vinegar (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.evoo2.checked == true) {
    vcalories = vcalories + 32.7;
    vtotal_fat = vtotal_fat + 2.61;
    vsat_fat = vsat_fat + 0.37;
    vcholesterol = vcholesterol + 2;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.07;
	vingredients = vingredients + "Extra Virgin Olive Oil & Aged Balsamic Vinegar (half amount for salads & bowls), ";
  }
  
      if (document.myForm.evoo3.checked == true) {
    vcalories = vcalories + 49.1;
    vtotal_fat = vtotal_fat + 3.91
    vsat_fat = vsat_fat + 0.56;
    vcholesterol = vcholesterol + 3;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.11;
	vingredients = vingredients + "Extra Virgin Olive Oil & Aged Balsamic Vinegar (regular amount for salads & bowls), ";
  }
  
      if (document.myForm.evoo4.checked == true) {
    vcalories = vcalories + 81.8;
    vtotal_fat = vtotal_fat + 6.53;
    vsat_fat = vsat_fat + 0.93;
    vcholesterol = vcholesterol + 5;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 5;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.18;
	vingredients = vingredients + "Extra Virgin Olive Oil & Aged Balsamic Vinegar (heavy amount for salads & bowls), ";
  }
  
      if (document.myForm.evoo5.checked == true) {
    vcalories = vcalories + 98;
    vtotal_fat = vtotal_fat + 7.82;
    vsat_fat = vsat_fat + 1.12;
    vcholesterol = vcholesterol + 6;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 6
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.2;
	vingredients = vingredients + "Extra Virgin Olive Oil & Aged Balsamic Vinegar (on the side), ";
  }
  
  
    if (document.myForm.chunkybluecheese.checked == true) {
    vcalories = vcalories + 74.67;
    vtotal_fat = vtotal_fat + 7.75;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 1.07;
    vsodium = vsodium + 155.87;
    vcarbs = vcarbs + 0.98;
    vdietary_fiber = vdietary_fiber + 0.02;
    vprotein = vprotein + 0.59;
	vingredients = vingredients + "Blue Cheese (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.chunkybluecheese2.checked == true) {
    vcalories = vcalories + 149.34;
    vtotal_fat = vtotal_fat + 15.49;
    vsat_fat = vsat_fat + 1.99;
    vcholesterol = vcholesterol + 21.38;
    vsodium = vsodium + 311.73;
    vcarbs = vcarbs + 1.96;
    vdietary_fiber = vdietary_fiber + 0.037;
    vprotein = vprotein + 1.17;
	vingredients = vingredients + "Blue Cheese (half amount for salads & bowls), ";
  }
  
      if (document.myForm.chunkybluecheese3.checked == true) {
    vcalories = vcalories + 224.01;
    vtotal_fat = vtotal_fat + 23.24;
    vsat_fat = vsat_fat + 2.99;
    vcholesterol = vcholesterol + 32.07;
    vsodium = vsodium + 467.6;
    vcarbs = vcarbs + 2.94;
    vdietary_fiber = vdietary_fiber + 0.06;
    vprotein = vprotein + 1.76;
	vingredients = vingredients + "Blue Cheese (regular amount for salads & bowls), ";
  }
  
      if (document.myForm.chunkybluecheese4.checked == true) {
    vcalories = vcalories + 373.35;
    vtotal_fat = vtotal_fat + 38.73;
    vsat_fat = vsat_fat + 4.98;
    vcholesterol = vcholesterol + 53.45;
    vsodium = vsodium + 779.33;
    vcarbs = vcarbs + 4.9;
    vdietary_fiber = vdietary_fiber + 0.09;
    vprotein = vprotein + 2.93;
	vingredients = vingredients + "Blue Cheese (heavy amount for salads & bowls), ";
  }
  
      if (document.myForm.chunkybluecheese5.checked == true) {
    vcalories = vcalories + 448.02;
    vtotal_fat = vtotal_fat + 46.47;
    vsat_fat = vsat_fat + 5.97;
    vcholesterol = vcholesterol + 64.14;
    vsodium = vsodium + 935.19;
    vcarbs = vcarbs + 5.88;
    vdietary_fiber = vdietary_fiber + 0.11;
    vprotein = vprotein + 3.51;
	vingredients = vingredients + "Blue Cheese (on the side), ";
  }
  
    if (document.myForm.cucumberdilldressing.checked == true) {
    vcalories = vcalories + 6.5;
    vtotal_fat = vtotal_fat + 0.48;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 3.5;
    vcarbs = vcarbs + 0.42;
    vdietary_fiber = vdietary_fiber + 0.05;
    vprotein = vprotein + 0.20;
	vingredients = vingredients + "Cucumber Dill Dressing (half amount for wraps & burritos), ";
  }

    if (document.myForm.cucumberdilldressing2.checked == true) {
    vcalories = vcalories + 13;
    vtotal_fat = vtotal_fat + 0.96;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 7;
    vcarbs = vcarbs + 0.84;
    vdietary_fiber = vdietary_fiber + 0.10;
    vprotein = vprotein + 0.40;
	vingredients = vingredients + "Cucumber Dill Dressing (half amount for salads & bowls), ";
  }

    if (document.myForm.cucumberdilldressing3.checked == true) {
    vcalories = vcalories + 19.5;
    vtotal_fat = vtotal_fat + 1.44;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 10.5;
    vcarbs = vcarbs + 1.26;
    vdietary_fiber = vdietary_fiber + 0.15;
    vprotein = vprotein + 0.60;
	vingredients = vingredients + "Cucumber Dill Dressing (hregular amount for salads & bowls), ";
  }
  
      if (document.myForm.cucumberdilldressing4.checked == true) {
    vcalories = vcalories + 32.5;
    vtotal_fat = vtotal_fat + 2.4;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 17.5;
    vcarbs = vcarbs + 2.1;
    vdietary_fiber = vdietary_fiber + 0.25;
    vprotein = vprotein + 1.00;
	vingredients = vingredients + "Cucumber Dill Dressing (heavy amount for salads & bowls), ";
  }
  
      if (document.myForm.cucumberdilldressing5.checked == true) {
    vcalories = vcalories + 39;
    vtotal_fat = vtotal_fat + 2.88;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 21;
    vcarbs = vcarbs + 2.52;
    vdietary_fiber = vdietary_fiber + 0.30;
    vprotein = vprotein + 1.20;
	vingredients = vingredients + "Cucumber Dill Dressing (on the side), ";
  }

    if (document.myForm.sweetteriyaki.checked == true) {
    vcalories = vcalories + 19.15;
    vtotal_fat = vtotal_fat + 0.01;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0.19;
    vsodium = vsodium + 589;
    vcarbs = vcarbs + 7.34;
    vdietary_fiber = vdietary_fiber + 0.15;
    vprotein = vprotein + 0.94;
	vingredients = vingredients + "Sweet Teriyaki (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.sweetteriyaki2.checked == true) {
    vcalories = vcalories + 38.3;
    vtotal_fat = vtotal_fat + 0.01;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0.37;
    vsodium = vsodium + 1177;
    vcarbs = vcarbs + 14.67;
    vdietary_fiber = vdietary_fiber + 0.29;
    vprotein = vprotein + 1.88;
	vingredients = vingredients + "Sweet Teriyaki (half amount for salads & bowls), ";
  }
  
        if (document.myForm.sweetteriyaki3.checked == true) {
    vcalories = vcalories + 57.5;
    vtotal_fat = vtotal_fat + 0.02;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0.56;
    vsodium = vsodium + 1768;
    vcarbs = vcarbs + 22.03;
    vdietary_fiber = vdietary_fiber + 0.43;
    vprotein = vprotein + 2.82;
	vingredients = vingredients + "Sweet Teriyaki (regular amount for salads & bowls), ";
  }
  
          if (document.myForm.sweetteriyaki4.checked == true) {
    vcalories = vcalories + 95.75;
    vtotal_fat = vtotal_fat + 0.03;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0.93;
    vsodium = vsodium + 2930;
    vcarbs = vcarbs + 36.68;
    vdietary_fiber = vdietary_fiber + 0.73;
    vprotein = vprotein + 4.7;
	vingredients = vingredients + "Sweet Teriyaki (heavy amount for salads & bowls), ";
  }
  
            if (document.myForm.sweetteriyaki5.checked == true) {
    vcalories = vcalories + 114.9;
    vtotal_fat = vtotal_fat + 0.03;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 1.11;
    vsodium = vsodium + 3530;
    vcarbs = vcarbs + 44.01;
    vdietary_fiber = vdietary_fiber + 0.87;
    vprotein = vprotein + 5.64;
	vingredients = vingredients + "Sweet Teriyaki (on the side), ";
  }
  
    if (document.myForm.honeydijondressing.checked == true) {
    vcalories = vcalories + 60.42;
    vtotal_fat = vtotal_fat + 5.6;
    vsat_fat = vsat_fat + 0.94;
    vcholesterol = vcholesterol + 2.33;
    vsodium = vsodium + 149;
    vcarbs = vcarbs + 1.86;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.14;
	vingredients = vingredients + "Honey Dijon Dressing (half amount for wraps & burritos), ";
  }
  
    if (document.myForm.honeydijondressing2.checked == true) {
    vcalories = vcalories + 120.8;
    vtotal_fat = vtotal_fat + 11.2;
    vsat_fat = vsat_fat + 1.88;
    vcholesterol = vcholesterol + 4.66;
    vsodium = vsodium + 298;
    vcarbs = vcarbs + 3.72;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.28;
	vingredients = vingredients + "Honey Dijon Dressing (half amount for salads & bowls), ";
  }
  
      if (document.myForm.honeydijondressing3.checked == true) {
    vcalories = vcalories + 181.2;
    vtotal_fat = vtotal_fat + 22.4;
    vsat_fat = vsat_fat + 3.76;
    vcholesterol = vcholesterol + 6.99;
    vsodium = vsodium + 447;
    vcarbs = vcarbs + 5.58;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.42;
	vingredients = vingredients + "Honey Dijon Dressing (regular amount for salads & bowls), ";
  }
  
      if (document.myForm.honeydijondressing4.checked == true) {
    vcalories = vcalories + 302;
    vtotal_fat = vtotal_fat + 28;
    vsat_fat = vsat_fat + 4.7;
    vcholesterol = vcholesterol + 11.65;
    vsodium = vsodium + 745;
    vcarbs = vcarbs + 9.3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.7;
	vingredients = vingredients + "Honey Dijon Dressing (heavy amount for salads & bowls), ";
  }
  
      if (document.myForm.honeydijondressing5.checked == true) {
    vcalories = vcalories + 362.4;
    vtotal_fat = vtotal_fat + 33.6;
    vsat_fat = vsat_fat + 5.64;
    vcholesterol = vcholesterol + 13.98;
    vsodium = vsodium + 894;
    vcarbs = vcarbs + 11.2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.84;
	vingredients = vingredients + "Honey Dijon Dressing (on the side), ";
  }
  
    if (document.myForm.orientalsesamedressing.checked == true) {
    vcalories = vcalories + 42;
    vtotal_fat = vtotal_fat + 2.8;
    vsat_fat = vsat_fat + 0.19;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 98;
    vcarbs = vcarbs + 3.74;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.19;
	vingredients = vingredients + "Asian Sesame (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.orientalsesamedressing2.checked == true) {
    vcalories = vcalories + 84;
    vtotal_fat = vtotal_fat + 5.6;
    vsat_fat = vsat_fat + 0.37;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 196;
    vcarbs = vcarbs + 7.48;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.37;
	vingredients = vingredients + "Asian Sesame (half amount for salads & bowls), ";
  }
  
        if (document.myForm.orientalsesamedressing3.checked == true) {
    vcalories = vcalories + 126;
    vtotal_fat = vtotal_fat + 8.4;
    vsat_fat = vsat_fat + 0.56;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 294;
    vcarbs = vcarbs + 11.22;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.56;
	vingredients = vingredients + "Asian Sesame (regular amount for salads & bowls), ";
  }
  
          if (document.myForm.orientalsesamedressing4.checked == true) {
    vcalories = vcalories + 210;
    vtotal_fat = vtotal_fat + 14.01;
    vsat_fat = vsat_fat + 0.93;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 490;
    vcarbs = vcarbs + 18.7;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.93;
	vingredients = vingredients + "Asian Sesame (heavy amount for salads & bowls), ";
  }
  
  
            if (document.myForm.orientalsesamedressing5.checked == true) {
    vcalories = vcalories + 252;
    vtotal_fat = vtotal_fat + 16.8;
    vsat_fat = vsat_fat + 1.11;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 588;
    vcarbs = vcarbs + 22.44;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1.11;
	vingredients = vingredients + "Asian Sesame (on the side), ";
  }
  
  
    if (document.myForm.poppyseedlightdressing.checked == true) {
    vcalories = vcalories + 42;
    vtotal_fat = vtotal_fat + 3.27;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 65.2;
    vcarbs = vcarbs + 2.8;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.10;
	vingredients = vingredients + "Poppyseed Light Dressing (half amount for wraps & burritos), ";
  }

    if (document.myForm.poppyseedlightdressing2.checked == true) {
    vcalories = vcalories + 84;
    vtotal_fat = vtotal_fat + 6.54;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 130.4;
    vcarbs = vcarbs + 5.6;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.19;
	vingredients = vingredients + "Poppyseed Light Dressing (half amount for salads & bowls), ";
  }
  
        if (document.myForm.poppyseedlightdressing3.checked == true) {
    vcalories = vcalories + 126;
    vtotal_fat = vtotal_fat + 9.81;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 195.64;
    vcarbs = vcarbs + 8.4;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.29;
	vingredients = vingredients + "Poppyseed Light Dressing (regular amount for salads & bowls), ";
  }
  
      if (document.myForm.poppyseedlightdressing4.checked == true) {
    vcalories = vcalories + 210;
    vtotal_fat = vtotal_fat + 16.35;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 326;
    vcarbs = vcarbs + 14;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.47;
	vingredients = vingredients + "Poppyseed Light Dressing (heavy amount for salads & bowls), ";
  }



      if (document.myForm.poppyseedlightdressing5.checked == true) {
    vcalories = vcalories + 252;
    vtotal_fat = vtotal_fat + 19.62;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 391.2;
    vcarbs = vcarbs + 16.8;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.57;
	vingredients = vingredients + "Poppyseed Light Dressing (on the side), ";
  }
  
    if (document.myForm.ranchfatfree.checked == true) {
    vcalories = vcalories + 32.25;
    vtotal_fat = vtotal_fat + 2.15;
    vsat_fat = vsat_fat + 0.32;
    vcholesterol = vcholesterol + 4.41;
    vsodium = vsodium + 173.72;
    vcarbs = vcarbs + 3.16;
    vdietary_fiber = vdietary_fiber + 0.06;
    vprotein = vprotein + 0.13;
	vingredients = vingredients + "Ranch Low Fat (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.ranchfatfree2.checked == true) {
    vcalories = vcalories + 64.49;
    vtotal_fat = vtotal_fat + 4.29;
    vsat_fat = vsat_fat + 0.64;
    vcholesterol = vcholesterol + 8.81;
    vsodium = vsodium + 347.44;
    vcarbs = vcarbs + 6.31;
    vdietary_fiber = vdietary_fiber + 0.11;
    vprotein = vprotein + 0.26;
	vingredients = vingredients + "Ranch Low Fat (half amount for salads & bowls), ";
  }
  
        if (document.myForm.ranchfatfree3.checked == true) {
    vcalories = vcalories + 96.74;
    vtotal_fat = vtotal_fat + 9.66;
    vsat_fat = vsat_fat + 0.96;
    vcholesterol = vcholesterol + 13.22;
    vsodium = vsodium + 521.16;
    vcarbs = vcarbs + 9.47;
    vdietary_fiber = vdietary_fiber + 0.17;
    vprotein = vprotein + 0.39;
	vingredients = vingredients + "Ranch Low Fat (regular amount for salads & bowls), ";
  }
  
          if (document.myForm.ranchfatfree4.checked == true) {
    vcalories = vcalories + 161.22;
    vtotal_fat = vtotal_fat + 10.72;
    vsat_fat = vsat_fat + 1.6;
    vcholesterol = vcholesterol + 22.02;
    vsodium = vsodium + 868.61;
    vcarbs = vcarbs + 15.77;
    vdietary_fiber = vdietary_fiber + 0.284;
    vprotein = vprotein + 0.639;
	vingredients = vingredients + "Ranch Low Fat (heavy amount for salads & bowls), ";
  }
  
          if (document.myForm.ranchfatfree5.checked == true) {
    vcalories = vcalories + 193.47;
    vtotal_fat = vtotal_fat + 12.87;
    vsat_fat = vsat_fat + 1.92;
    vcholesterol = vcholesterol + 26.43;
    vsodium = vsodium + 1042.43;
    vcarbs = vcarbs + 18.93;
    vdietary_fiber = vdietary_fiber + 0.33;
    vprotein = vprotein + 0.79;
	vingredients = vingredients + "Ranch Low Fat (on the side), ";
  }
  
      if (document.myForm.salsa.checked == true) {
    vcalories = vcalories + 5.13;
    vtotal_fat = vtotal_fat + 0.12;
    vsat_fat = vsat_fat + 0.02;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 75.5;
    vcarbs = vcarbs + 0.91;
    vdietary_fiber = vdietary_fiber + 0.23;
    vprotein = vprotein + 0.11;
	vingredients = vingredients + "Salsa (half amount for wraps & burritos), ";
  }
  
        if (document.myForm.salsa2.checked == true) {
    vcalories = vcalories + 10.25;
    vtotal_fat = vtotal_fat + 0.23;
    vsat_fat = vsat_fat + 0.03;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 151;
    vcarbs = vcarbs + 1.82;
    vdietary_fiber = vdietary_fiber + 0.45;
    vprotein = vprotein + 0.22;
	vingredients = vingredients + "Salsa (half amount for salads & bowls), ";
  }
  
          if (document.myForm.salsa3.checked == true) {
    vcalories = vcalories + 15.38;
    vtotal_fat = vtotal_fat + 0.35;
    vsat_fat = vsat_fat + 0.05;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 227;
    vcarbs = vcarbs + 2.73;
    vdietary_fiber = vdietary_fiber + 0.68;
    vprotein = vprotein + 0.33;
	vingredients = vingredients + "Salsa (regular amount for salads & bowls), ";
  }
  
          if (document.myForm.salsa4.checked == true) {
    vcalories = vcalories + 25.63;
    vtotal_fat = vtotal_fat + 0.58;
    vsat_fat = vsat_fat + 0.08;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 378;
    vcarbs = vcarbs + 4.55;
    vdietary_fiber = vdietary_fiber + 1.13;
    vprotein = vprotein + 0.33;
	vingredients = vingredients + "Salsa (heavy amount for salads & bowls), ";
  }
  
            if (document.myForm.salsa5.checked == true) {
    vcalories = vcalories + 30.75;
    vtotal_fat = vtotal_fat + 0.69;
    vsat_fat = vsat_fat + 0.09;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 453;
    vcarbs = vcarbs + 5.46;
    vdietary_fiber = vdietary_fiber + 1.35;
    vprotein = vprotein + 0.66;
	vingredients = vingredients + "Salsa (on the side), ";
  }
 
    if (document.myForm.ranch.checked == true) {
    vcalories = vcalories + 65.2;
    vtotal_fat = vtotal_fat + 7.4;
    vsat_fat = vsat_fat + 0.47;
    vcholesterol = vcholesterol + 14;
    vsodium = vsodium + 74.62;
    vcarbs = vcarbs + 0.94;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.28;
	vingredients = vingredients + "Ranch (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.ranch2.checked == true) {
    vcalories = vcalories + 130.4;
    vtotal_fat = vtotal_fat + 14.8;
    vsat_fat = vsat_fat + 0.94;
    vcholesterol = vcholesterol + 28;
    vsodium = vsodium + 149.2;
    vcarbs = vcarbs + 1.88;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.56;
	vingredients = vingredients + "Ranch (half amount for salads & bowls), ";
  }
 
     if (document.myForm.ranch3.checked == true) {
    vcalories = vcalories + 195.6;
    vtotal_fat = vtotal_fat + 22.2;
    vsat_fat = vsat_fat + 1.41;
    vcholesterol = vcholesterol + 42;
    vsodium = vsodium + 223.8;
    vcarbs = vcarbs + 2.82;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0.84;
	vingredients = vingredients + "Ranch (regular amount for salads & bowls), ";
  }
  
      if (document.myForm.ranch4.checked == true) {
    vcalories = vcalories + 326;
    vtotal_fat = vtotal_fat + 37;
    vsat_fat = vsat_fat + 2.34;
    vcholesterol = vcholesterol + 70;
    vsodium = vsodium + 373;
    vcarbs = vcarbs + 4.7
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1.4;
	vingredients = vingredients + "Ranch (heavy amount for salads & bowls), ";
  }
  
      if (document.myForm.ranch5.checked == true) {
    vcalories = vcalories + 391.2;
    vtotal_fat = vtotal_fat + 44.4;
    vsat_fat = vsat_fat + 2.82;
    vcholesterol = vcholesterol + 84;
    vsodium = vsodium + 447.6;
    vcarbs = vcarbs + 5.64;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1.68;
	vingredients = vingredients + "Ranch (on the side), ";
  }
  
    if (document.myForm.sriacha.checked == true) {
    vcalories = vcalories + 14;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 280;
    vcarbs = vcarbs + 2.8;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Sriacha (Spicy) Rooster Sauce (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.sriacha2.checked == true) {
    vcalories = vcalories + 28;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 560;
    vcarbs = vcarbs + 5.6;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Sriacha (Spicy) Rooster Sauce (half amount for salads & bowls), ";
  }
  
        if (document.myForm.sriacha3.checked == true) {
    vcalories = vcalories + 42;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 840;
    vcarbs = vcarbs + 8.4;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Sriacha (Spicy) Rooster Sauce (regular amount for salads & bowls), ";
  }
  
        if (document.myForm.sriacha4.checked == true) {
    vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 1400;
    vcarbs = vcarbs + 14;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Sriacha (Spicy) Rooster Sauce (heavy amount for salads & bowls), ";
  }
  
        if (document.myForm.sriacha5.checked == true) {
    vcalories = vcalories + 84;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 1680;
    vcarbs = vcarbs + 16.8;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Sriacha (Spicy) Rooster Sauce (on the side), ";
  }
  
    if (document.myForm.lowsodiumsoy.checked == true) {
    vcalories = vcalories + 3.35;
    vtotal_fat = vtotal_fat + 0.02;
    vsat_fat = vsat_fat + 0.02;
    vcholesterol = vcholesterol + 0.15;
    vsodium = vsodium + 476;
    vcarbs = vcarbs + 0.60;
    vdietary_fiber = vdietary_fiber + 0.04;
    vprotein = vprotein + 0.23;
	vingredients = vingredients + "Low Sodium Soy (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.lowsodiumsoy2.checked == true) {
    vcalories = vcalories + 6.7;
    vtotal_fat = vtotal_fat + 0.03;
    vsat_fat = vsat_fat + 0.03;
    vcholesterol = vcholesterol + 0.3;
    vsodium = vsodium + 952;
    vcarbs = vcarbs + 1.2;
    vdietary_fiber = vdietary_fiber + 0.08;
    vprotein = vprotein + 0.45;
	vingredients = vingredients + "Low Sodium Soy (half amount for salads & bowls), ";
  }
  
        if (document.myForm.lowsodiumsoy3.checked == true) {
    vcalories = vcalories + 10.05;
    vtotal_fat = vtotal_fat + 0.05;
    vsat_fat = vsat_fat + 0.05;
    vcholesterol = vcholesterol + 0.45;
    vsodium = vsodium + 1428;
    vcarbs = vcarbs + 1.8;
    vdietary_fiber = vdietary_fiber + 0.12;
    vprotein = vprotein + 0.68;
	vingredients = vingredients + "Low Sodium Soy (regular amount for salads & bowls), ";
  }
  
          if (document.myForm.lowsodiumsoy4.checked == true) {
    vcalories = vcalories + 16.75;
    vtotal_fat = vtotal_fat + 0.08;
    vsat_fat = vsat_fat + 0.08;
    vcholesterol = vcholesterol + 0.75;
    vsodium = vsodium + 2380;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0.20;
    vprotein = vprotein + 1.13;
	vingredients = vingredients + "Low Sodium Soy (heavy amount for salads & bowls), ";
  }
  
  
            if (document.myForm.lowsodiumsoy5.checked == true) {
    vcalories = vcalories + 20.1;
    vtotal_fat = vtotal_fat + 0.09;
    vsat_fat = vsat_fat + 0.09;
    vcholesterol = vcholesterol + 0.9;
    vsodium = vsodium + 2860;
    vcarbs = vcarbs + 3.6;
    vdietary_fiber = vdietary_fiber + 0.24;
    vprotein = vprotein + 1.35;
	vingredients = vingredients + "Low Sodium Soy (on the side), ";
  }
  
    if (document.myForm.spicypeanutsauce.checked == true) {
    vcalories = vcalories + 43.4
    vtotal_fat = vtotal_fat + 2.98;
    vsat_fat = vsat_fat + 0.49;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 136;
    vcarbs = vcarbs + 3.9;
    vdietary_fiber = vdietary_fiber + 0.28;
    vprotein = vprotein + 0.7;
	vingredients = vingredients + "Spicy Peanut Sauce (half amount for wraps & burritos), ";
  }
  
      if (document.myForm.spicypeanutsauce2.checked == true) {
    vcalories = vcalories + 86.8;
    vtotal_fat = vtotal_fat + 5.96;
    vsat_fat = vsat_fat + 0.98;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 272;
    vcarbs = vcarbs + 7.8;
    vdietary_fiber = vdietary_fiber + 0.56;
    vprotein = vprotein + 1.4;
	vingredients = vingredients + "Spicy Peanut Sauce (half amount for salads & bowls), ";
  }

      if (document.myForm.spicypeanutsauce3.checked == true) {
    vcalories = vcalories + 130.2;
    vtotal_fat = vtotal_fat + 8.94;
    vsat_fat = vsat_fat + 1.47;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 408;
    vcarbs = vcarbs + 11.7;
    vdietary_fiber = vdietary_fiber + 0.84;
    vprotein = vprotein + 2.1;
	vingredients = vingredients + "Spicy Peanut Sauce (regular amount for salads & bowls), ";
  }

      if (document.myForm.spicypeanutsauce4.checked == true) {
    vcalories = vcalories + 217;
    vtotal_fat = vtotal_fat + 14.9;
    vsat_fat = vsat_fat + 2.45;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 679;
    vcarbs = vcarbs + 19.5;
    vdietary_fiber = vdietary_fiber + 1.4;
    vprotein = vprotein + 3.5;
	vingredients = vingredients + "Spicy Peanut Sauce (heavy amount for salads & bowls), ";
  }
  
        if (document.myForm.spicypeanutsauce5.checked == true) {
    vcalories = vcalories + 260.4;
    vtotal_fat = vtotal_fat + 17.88;
    vsat_fat = vsat_fat + 2.94;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 816;
    vcarbs = vcarbs + 23.4;
    vdietary_fiber = vdietary_fiber + 1.68;
    vprotein = vprotein + 4.2;
	vingredients = vingredients + "Spicy Peanut Sauce (on the side), ";
  }
  
  if (document.myForm.mandarinoranges.checked == true) {
    vcalories = vcalories + 17.36;
    vtotal_fat = vtotal_fat + 0.02;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 4.17;
    vdietary_fiber = vdietary_fiber + 0.5;
    vprotein = vprotein + 0.14;
	vingredients = vingredients + "Mandarin Oranges, ";
  }
  
    if (document.myForm.pitawrap.checked == true) {
    vcalories = vcalories + 125;
    vtotal_fat = vtotal_fat + 1.5;
    vsat_fat = vsat_fat + 0.13;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 225;
    vcarbs = vcarbs + 25;
    vdietary_fiber = vdietary_fiber + 1.5;
    vprotein = vprotein + 4;
	vingredients = vingredients + "Multigrain Flatbread, ";
  }
  
      if (document.myForm.tortilla.checked == true) {
    vcalories = vcalories + 320;
    vtotal_fat = vtotal_fat + 7;
    vsat_fat = vsat_fat + 3;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 610;
    vcarbs = vcarbs + 53;
    vdietary_fiber = vdietary_fiber + 6;
    vprotein = vprotein + 11;
	vingredients = vingredients + "12 Whole Wheat Flour Tortilla, ";
  }
  
  document.myForm.calories.value = Math.round(vcalories*100)/100;
  document.myForm.protein.value = Math.round(vprotein*100)/100 + 'g';
  document.myForm.total_fat.value = Math.round(vtotal_fat*100)/100 + 'g';
  document.myForm.sat_fat.value = Math.round(vsat_fat*100)/100 + 'g';
  document.myForm.cholesterol.value = Math.round(vcholesterol*100)/100 + 'mg';
  document.myForm.sodium.value = Math.round(vsodium*100)/100 + 'mg';
  document.myForm.carbs.value = Math.round(vcarbs*100)/100 + 'g';
  document.myForm.dietary_fiber.value = Math.round(vdietary_fiber*100)/100 + 'g';
  document.myForm.ingredients.value = vingredients;

  
}



