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 = "";

  /* Lettuce */
  if (document.myForm.lett1.checked == true) {
	vcalories = vcalories + 15;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 25;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Baby Field Greens, ";
  }
  if (document.myForm.lett2.checked == true) {
	vcalories = vcalories + 20;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 5;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Romaine Hearts, ";
  }
  if (document.myForm.lett3.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 45;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Baby Spinach, ";
  }
  if (document.myForm.lett4.checked == true) {
	vcalories = vcalories + 20;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 20;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Baby Arugula, ";
  } 
  if (document.myForm.lett5.checked == true) {
	vcalories = vcalories + 30;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 20;
    vcarbs = vcarbs + 6;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Iceberg Lettuce, ";
  }

  /* Veggies */
  if (document.myForm.veggie1.checked == true) {
	vcalories = vcalories + 40;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 170;
    vcarbs = vcarbs + 8;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Black Bean Corn Salsa, ";
  }
  
  if (document.myForm.veggie2.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 10;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Broccoli, ";
  }
  
  if (document.myForm.veggie3.checked == true) {
	vcalories = vcalories + 15;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 25;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Carrots, ";
  }
  
  if (document.myForm.veggie4.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 45;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Celery, ";
  }
  
  if (document.myForm.veggie5.checked == true) {
	vcalories = vcalories + 35;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 115;
    vcarbs = vcarbs + 7;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Chick Peas, ";
  }
  
  if (document.myForm.veggie6.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Cucumbers, ";
  }
  if (document.myForm.veggie7.checked == true) {
	vcalories = vcalories + 15;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Jicama, ";
	
  }
  if (document.myForm.veggie8.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Red Onions, ";
  }
  if (document.myForm.veggie9.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Peppers, ";
  }
  if (document.myForm.veggie10.checked == true) {
	vcalories = vcalories + 25;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Sugar Snap Peas, ";
  }
  if (document.myForm.veggie11.checked == true) {
	vcalories = vcalories + 15;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Chopped Tomatoes, ";
  }
  if (document.myForm.veggie12.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Grape Tomatoes, ";
  }
  if (document.myForm.veggie13.checked == true) {
	vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 2;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 240;
    vcarbs = vcarbs + 12;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Corn, ";
  }
  if (document.myForm.veggie14.checked == true) {
	vcalories = vcalories + 15;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 150;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Roasted Peppers, ";
  }
  if (document.myForm.veggie15.checked == true) {
	vcalories = vcalories + 30;
    vtotal_fat = vtotal_fat + 0.5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 40;
    vcarbs = vcarbs + 6;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Roasted Onions, ";
  }
  if (document.myForm.veggie16.checked == true) {
	vcalories = vcalories + 80;
    vtotal_fat = vtotal_fat + 5;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 210;
    vsodium = vsodium + 70;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 6;
	vingredients = vingredients + "Egg, ";
  }
  if (document.myForm.veggie17.checked == true) {
	vcalories = vcalories + 20;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 60;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 4;
	vingredients = vingredients + "Egg Whites, ";
  }
  if (document.myForm.veggie18.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Banana Peppers, ";
  }
  
  /* Fruit */
  if (document.myForm.fruit1.checked == true) {
	vcalories = vcalories + 30;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 8;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Apples, ";
  }
  if (document.myForm.fruit2.checked == true) {
	vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 18;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Dried Cranberries, ";
  }
  if (document.myForm.fruit3.checked == true) {
	vcalories = vcalories + 45;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 11;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Mandarin Oranges, ";
  }
  if (document.myForm.fruit4.checked == true) {
	vcalories = vcalories + 25;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 7;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Pineapples, ";
  }
  if (document.myForm.fruit5.checked == true) {
	vcalories = vcalories + 60;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 17;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Golden Raisins, ";
  }
  if (document.myForm.fruit6.checked == true) {
	vcalories = vcalories + 15;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Strawberries, ";
  }
  
  /* Nuts */
   if (document.myForm.nuts1.checked == true) {
	vcalories = vcalories + 50;
    vtotal_fat = vtotal_fat + 1;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 190;
    vcarbs = vcarbs + 8;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Croutons, ";
  }
  if (document.myForm.nuts2.checked == true) {
	vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 4;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 9;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Plantain Chips, ";
  }
  if (document.myForm.nuts3.checked == true) {
	vcalories = vcalories + 50;
    vtotal_fat = vtotal_fat + 4.5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Sunflower Seeds, ";
  }
  if (document.myForm.nuts4.checked == true) {
	vcalories = vcalories + 110;
    vtotal_fat = vtotal_fat + 5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 115;
    vcarbs = vcarbs + 13;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Tortilla Strips, ";
  }
  if (document.myForm.nuts5.checked == true) {
	vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 6;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 30;
    vcarbs = vcarbs + 8;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Wonton Crisps, ";
  }
  
  /* Chicken */
  if (document.myForm.chicken1.checked == true) {
	vcalories = vcalories + 180;
    vtotal_fat = vtotal_fat + 8;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 65;
    vsodium = vsodium + 290;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 25;
	vingredients = vingredients + "Roasted Chicken, ";
  }
  if (document.myForm.chicken2.checked == true) {
	vcalories = vcalories + 210;
    vtotal_fat = vtotal_fat + 10;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 65;
    vsodium = vsodium + 340;
    vcarbs = vcarbs + 5;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 25;
	vingredients = vingredients + "BBQ Chicken, ";
  }
  if (document.myForm.chicken3.checked == true) {
	vcalories = vcalories + 180;
    vtotal_fat = vtotal_fat + 8;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 65;
    vsodium = vsodium + 620;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 24;
	vingredients = vingredients + "Blackened Chicken, ";
  }
  if (document.myForm.chicken4.checked == true) {
	vcalories = vcalories + 250;
    vtotal_fat = vtotal_fat + 16;
    vsat_fat = vsat_fat + 2.5;
    vcholesterol = vcholesterol + 65;
    vsodium = vsodium + 360;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 25;
	vingredients = vingredients + "Pesto Chicken, ";
  }
  if (document.myForm.chicken5.checked == true) {
	vcalories = vcalories + 210;
    vtotal_fat = vtotal_fat + 12;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 65;
    vsodium = vsodium + 440;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 23;
	vingredients = vingredients + "Tarragon Chicken Salad, ";
  }
  if (document.myForm.chicken6.checked == true) {
	vcalories = vcalories + 80;
    vtotal_fat = vtotal_fat + 2;
    vsat_fat = vsat_fat + 0.5;
    vcholesterol = vcholesterol + 30;
    vsodium = vsodium + 610;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 11;
	vingredients = vingredients + "Smoked Turkey, ";
  }
  if (document.myForm.chicken7.checked == true) {
	vcalories = vcalories + 200;
    vtotal_fat = vtotal_fat + 14;
    vsat_fat = vsat_fat + 6;
    vcholesterol = vcholesterol + 30;
    vsodium = vsodium + 680;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 11;
	vingredients = vingredients + "Black Forest Ham, ";
  }
  if (document.myForm.chicken8.checked == true) {
	vcalories = vcalories + 210;
    vtotal_fat = vtotal_fat + 12;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 65;
    vsodium = vsodium + 440;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 23;
	vingredients = vingredients + "Tossed Tuna (mixed with dried cranberries, apples and mayo), ";
  }
  if (document.myForm.chicken9.checked == true) {
	vcalories = vcalories + 100;
    vtotal_fat = vtotal_fat + 5;
    vsat_fat = vsat_fat + 0.5;
    vcholesterol = vcholesterol + 115;
    vsodium = vsodium + 410;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 12;
	vingredients = vingredients + "Cayenne Shrimp, ";
  }
  
  /* Cheese */
  if (document.myForm.cheese1.checked == true) {
	vcalories = vcalories + 150;
    vtotal_fat = vtotal_fat + 12;
    vsat_fat = vsat_fat + 8;
    vcholesterol = vcholesterol + 40;
    vsodium = vsodium + 580;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 9;
	vingredients = vingredients + "Blue, ";
  }
  if (document.myForm.cheese2.checked == true) {
	vcalories = vcalories + 140;
    vtotal_fat = vtotal_fat + 11;
    vsat_fat = vsat_fat + 8;
    vcholesterol = vcholesterol + 40;
    vsodium = vsodium + 230;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 8;
	vingredients = vingredients + "Cheddar, ";
  }
  if (document.myForm.cheese3.checked == true) {
	vcalories = vcalories + 110;
    vtotal_fat = vtotal_fat + 6;
    vsat_fat = vsat_fat + 4.5;
    vcholesterol = vcholesterol + 23;
    vsodium = vsodium + 520;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Feta, ";
  }
  if (document.myForm.cheese4.checked == true) {
	vcalories = vcalories + 110;
    vtotal_fat = vtotal_fat + 9;
    vsat_fat = vsat_fat + 6;
    vcholesterol = vcholesterol + 20;
    vsodium = vsodium + 160;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 8;
	vingredients = vingredients + "Goat, ";
  }
  if (document.myForm.cheese5.checked == true) {
	vcalories = vcalories + 160;
    vtotal_fat = vtotal_fat + 12;
    vsat_fat = vsat_fat + 8;
    vcholesterol = vcholesterol + 40;
    vsodium = vsodium + 80;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 10;
	vingredients = vingredients + "Fresh Mozzarella, ";
  }
  if (document.myForm.cheese6.checked == true) {
	vcalories = vcalories + 110;
    vtotal_fat = vtotal_fat + 9;
    vsat_fat = vsat_fat + 6;
    vcholesterol = vcholesterol + 30;
    vsodium = vsodium + 310;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 11;
	vingredients = vingredients + "Shaved Parmesan, ";
  }
  
  /* Gourmet Items */
  if (document.myForm.gourmet1.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Shiitake Mushrooms, ";
  }
  if (document.myForm.gourmet2.checked == true) {
	vcalories = vcalories + 45;
    vtotal_fat = vtotal_fat + 3.5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 170;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Roasted Portobello Mushrooms, ";
  }
  if (document.myForm.gourmet3.checked == true) {
	vcalories = vcalories + 80;
    vtotal_fat = vtotal_fat + 2;
    vsat_fat = vsat_fat + 0.5;
    vcholesterol = vcholesterol + 30;
    vsodium = vsodium + 610;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 11;
	vingredients = vingredients + "Smoked Bacon, ";
  }
  if (document.myForm.gourmet4.checked == true) {
	vcalories = vcalories + 120;
    vtotal_fat = vtotal_fat + 11;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 690;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Kalamata Olives, ";
  }
  if (document.myForm.gourmet5.checked == true) {
	vcalories = vcalories + 140;
    vtotal_fat = vtotal_fat + 12;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 5;
    vcarbs = vcarbs + 7;
    vdietary_fiber = vdietary_fiber + 6;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Avocado, ";  
  }
  if (document.myForm.gourmet6.checked == true) {
	vcalories = vcalories + 30;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 8;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Mango, ";
  }
  if (document.myForm.gourmet7.checked == true) {
	vcalories = vcalories + 70;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 330;
    vcarbs = vcarbs + 16;
    vdietary_fiber = vdietary_fiber + 4;
    vprotein = vprotein + 4;
	vingredients = vingredients + "Sun-dried Tomatoes, ";
  }
  if (document.myForm.gourmet8.checked == true) {
	vcalories = vcalories + 230;
    vtotal_fat = vtotal_fat + 23;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 5;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 5;
	vingredients = vingredients + "Almonds, ";
  }
  if (document.myForm.gourmet9.checked == true) {
	vcalories = vcalories + 80;
    vtotal_fat = vtotal_fat + 4;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 8;
	vingredients = vingredients + "Tofu, ";
  }
  if (document.myForm.gourmet10.checked == true) {
	vcalories = vcalories + 230;
    vtotal_fat = vtotal_fat + 23;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 5;
    vdietary_fiber = vdietary_fiber + 2;
    vprotein = vprotein + 5;
	vingredients = vingredients + "Walnuts, ";
  }
  
  /* Dressings */
  if (document.myForm.dressing1.checked == true) {
	vcalories = vcalories + 85;
    vtotal_fat = vtotal_fat + 9;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 52;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Tossed Sherry Wine Vinaigrette, ";
  }
  if (document.myForm.dressing2.checked == true) {
	vcalories = vcalories + 83;
    vtotal_fat = vtotal_fat + 8;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 93;
    vcarbs = vcarbs + 3;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Tossed Balsamic Vinaigrette, ";
  }
  if (document.myForm.dressing3.checked == true) {
	vcalories = vcalories + 137;
    vtotal_fat = vtotal_fat + 14;
    vsat_fat = vsat_fat + 3;
    vcholesterol = vcholesterol + 15;
    vsodium = vsodium + 156;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Blue Cheese, ";
  }
  if (document.myForm.dressing4.checked == true) {
	vcalories = vcalories + 130;
    vtotal_fat = vtotal_fat + 14;
    vsat_fat = vsat_fat + 3;
    vcholesterol = vcholesterol + 10;
    vsodium = vsodium + 292;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Buttermilk Ranch, ";
  }
  if (document.myForm.dressing5.checked == true) {
	vcalories = vcalories + 150;
    vtotal_fat = vtotal_fat + 16;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 30;
    vsodium = vsodium + 250;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 2;
	vingredients = vingredients + "Caesar, ";
  }
  if (document.myForm.dressing6.checked == true) {
	vcalories = vcalories + 160;
    vtotal_fat = vtotal_fat + 16;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 5;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Honey Sesame, ";
	
  }
  if (document.myForm.dressing7.checked == true) {
	vcalories = vcalories + 134;
    vtotal_fat = vtotal_fat + 14;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 12;
    vsodium = vsodium + 244;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Thousand Island, ";
  }
  if (document.myForm.dressing8.checked == true) {
	vcalories = vcalories + 170;
    vtotal_fat = vtotal_fat + 20;
    vsat_fat = vsat_fat + 3;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 340;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Two Virgins, ";
  }
  if (document.myForm.dressing9.checked == true) {
	vcalories = vcalories + 240;
    vtotal_fat = vtotal_fat + 28;
    vsat_fat = vsat_fat + 4;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Extra Virgin Olive Oil, ";
  }
  if (document.myForm.dressing10.checked == true) {
	vcalories = vcalories + 100;
    vtotal_fat = vtotal_fat + 10;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 6;
    vcarbs = vcarbs + 4;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Citrus Chipotle, ";
  }
  if (document.myForm.dressing11.checked == true) {
	vcalories = vcalories + 150;
    vtotal_fat = vtotal_fat + 17;
    vsat_fat = vsat_fat + 3;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 70;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Dijon Mustard Vinaigrette, ";
  }
  if (document.myForm.dressing12.checked == true) {
	vcalories = vcalories + 120;
    vtotal_fat = vtotal_fat + 11;
    vsat_fat = vsat_fat + 1.5;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 75;
    vcarbs = vcarbs + 5;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Honey Balsamic Vinaigrette, ";
  }
  if (document.myForm.dressing13.checked == true) {
	vcalories = vcalories + 130;
    vtotal_fat = vtotal_fat + 12;
    vsat_fat = vsat_fat + 2;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 135;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Kalamata Olive Vinaigrette, ";
  }
  if (document.myForm.dressing14.checked == true) {
	vcalories = vcalories + 160;
    vtotal_fat = vtotal_fat + 17;
    vsat_fat = vsat_fat + 2.5;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 140;
    vcarbs = vcarbs + 1;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Lemon Basil Vinaigrette, ";
  }
  if (document.myForm.dressing15.checked == true) {
	vcalories = vcalories + 80;
    vtotal_fat = vtotal_fat + 9;
    vsat_fat = vsat_fat + 1;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 55;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Strawberry Balsamic Vinaigrette, ";
  }
  if (document.myForm.dressing16.checked == true) {
	vcalories = vcalories + 10;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 220;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 1;
	vingredients = vingredients + "Fat Free Cucumber Dill, ";
  }
  if (document.myForm.dressing17.checked == true) {
	vcalories = vcalories + 80;
    vtotal_fat = vtotal_fat + 0.5;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 210;
    vcarbs = vcarbs + 18;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Fat Free Honey Dijon, ";
  }
  if (document.myForm.dressing18.checked == true) {
	vcalories = vcalories + 34;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 75;
    vcarbs = vcarbs + 9;
    vdietary_fiber = vdietary_fiber + 1;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Fat Free Raspberry Vinaigrette, ";
  }
  if (document.myForm.dressing19.checked == true) {
	vcalories = vcalories + 30;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 6;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Balsamic Vinegar, ";
  }
  if (document.myForm.dressing20.checked == true) {
	vcalories = vcalories + 4;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 0;
    vcarbs = vcarbs + 0;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Red Wine Vinegar, ";
  }
  if (document.myForm.dressing21.checked == true) {
	vcalories = vcalories + 6;
    vtotal_fat = vtotal_fat + 0;
    vsat_fat = vsat_fat + 0;
    vcholesterol = vcholesterol + 0;
    vsodium = vsodium + 6;
    vcarbs = vcarbs + 2;
    vdietary_fiber = vdietary_fiber + 0;
    vprotein = vprotein + 0;
	vingredients = vingredients + "Freshly Squeezed Lemon Juice, ";
  }
  
  
  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;

}
