
function validateDailyForm(theForm)
{
  if (!blankCheck(theForm.txt_1_company_name, "Company Name")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_company_name, "Delivery Company Name")) return (false);
  if (!blankCheck(theForm.txt_1_bill_address, "Bill to Address")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_address, "Delivery Address")) return (false);
  if (!blankCheck(theForm.txt_1_city, "City")) return (false);
  if (!blankCheck(theForm.txt_1_state, "State")) return (false);
  if (!blankCheck(theForm.txt_1_zip, "Zip")) return (false);
  //if (!blankCheck(theForm.txt_1_suite_number, "Suite #")) return (false);
  if (!blankCheck(theForm.txt_1_contact, "Contact")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_city, "City")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_state, "State")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_zip, "Zip")) return (false);
  if (!blankCheck(theForm.txt_1_phone, "Phone")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_contact, "Delivery Contact")) return (false);
  if (!blankCheck(theForm.txt_1_fax, "Fax")) return (false);
  if (!blankCheck(theForm.txt_1_delivery_phone, "Phone")) return (false);
  if (!blankCheck(theForm.txt_1_email, "Email")) return (false);  
  if (!blankCheck(theForm.txt_1_email_confirmation, "Email Confirmation")) return (false);
  if (!blankCheck(theForm.txt_1_guest_count, "Guest Count")) return (false);
  if (!blankCheck(theForm.txt_1_fax_confirmation, "Fax Confirmation")) return (false);
  if (!blankCheck(theForm.txt_1_serve_time, "Serve Time")) return (false);
  if (!blankCheck(theForm.txt_1_serve_date, "Date of Event")) return (false);
  
  
  /*
  if (!countCheck(theForm.txt_2_continental, "Continental", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_western_scramble, "Schaul's Western Scramble", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_country_kitchen_heartland_potatoes_and_bagels, "Heartland Potatoes & Bagels", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_country_kitchen_heartland_potatoes_and_french_toast, "Heartland Potatoes & French Toast", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_country_kitchen_hash_browns_and_bagels, "Hash Browns & Bagels", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_country_kitchen_hash_browns_and_frenchtoast, "Hashbrowns & French Toast", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_buenos_dias_fiesta, "Buenos Dias Fiesta", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_steak_and_egger, "Steak and Egger", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_frittatas_mexican, "Mexican", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_frittatas_veggie, "Veggie", 15)) return (false);
	
	//if (!countCheck(theForm.txt_2_atkins_smokedsalmon, "Smoked Salmon")) return (false);
	
	//if (!countCheck(theForm.txt_2_atkins_ricottaleek, "Ricotta & Leek")) return (false);
	
	if (!countCheck(theForm.txt_2_breakfast_strudel_buffet_ham_swiss, "Ham & Swiss", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_breakfast_strudel_buffet_spinach, "Spinach", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_breakfast_strudel_buffet_chevre_roasted_red_pepper, "Chevre & Roasted Red Pepper", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_breakfast_strudel_buffet_sauteed_veggies, "Sauteed Vegetables & Cheddar Cheese", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_healthy_start, "Healthy Start", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_lox_bagels, "Lox & Bagels Tray", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_omelets_your_way, "Omelets or Eggs Your Way", 15)) return (false);
	
	//if (!countCheck(theForm.txt_2_espresso_bar, "The Espresso Bar")) return (false);
	
	if (!numCheck(theForm.txt_2_bagel_basket_small, "The Bagel Basket: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_bagel_basket_large, "The Bagel Basket: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_elegant_small, "The Elegant: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_elegant_large, "The Elegant: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_early_riser_small, "The Early Riser: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_early_riser_large, "The Early Riser: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_donuts_galore_small, "Donuts Galore: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_donuts_galore_large, "Donuts Galore: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_gourmet_breakfast_basket_small, "Gourmet Breakfast Basket: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_gourmet_breakfast_basket_large, "Gourmet Breakfast Basket: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_something_for_everyone_small, "Something for Everyone: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_something_for_everyone_large, "Something for Everyone: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_seasonal_whole_fruit_small, "Seasonal Whole Fruit: Small", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_seasonal_whole_fruit_large, "Seasonal Whole Fruit: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_seasonal_whole_fruit_extralarge, "Seasonal Whole Fruit: Extra-Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_sliced_assorted_fresh_fruit_large, "Slices of Assorted Fresh Fruit: Large", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_sliced_assorted_fresh_fruit_small, "Slices of Assorted Fresh Fruit: Small", 15)) return (false);
	
	if (!countCheck(theForm.txt_2_oatmeal, "Oatmeal", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_breakfast_strudel_ham_swiss, "Ham & Swiss ", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_breakfast_strudel_spinach, "Spinach", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_breakfast_strudel_chevre, "Chevre & Roasted Red Pepper", 15)) return (false);
	
	if (!numCheck(theForm.txt_2_breakfast_strudel_sauteedveggies, "Sauteed Vegetables & Cheddar Cheese", 15)) return (false);
	
	if (!countCheck(theForm.txt_3_bacon, "Bacon", 15)) return (false);
	
	if (!countCheck(theForm.txt_3_sausage, "Sausage", 15)) return (false);
	
	if (!countCheck(theForm.txt_3_ham, "Ham", 15)) return (false);
	
	if (!numCheck(theForm.txt_3_heartland_potatoes_small_pan, "Heartland Potatoes: Small Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_heartland_potatoes_large_pan, "Heartland Potatoes: Large Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_country_hashbrowns_small_pan, "Country Hash Browns: Small Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_country_hashbrowns_large_pan, "Country Hash Browns: Large Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_scrambled_eggs_small_pan, "Scrambled Eggs: Small Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_scrambled_eggs_large_pan, "Scrambled Eggs: Large Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_western_scrambled_small_pan, "Western Scrambled Eggs: Small Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_western_scrambled_large_pan, "Western Scrambled Eggs: Large Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_western_style_egg_and_potato_skillet_small, "Western Style Egg & Potato Skillet: Small Pan")) return (false);
	
	if (!numCheck(theForm.txt_3_western_style_egg_and_potato_skillet_large, "Western Style Egg & Potato Skillet: Large Pan")) return (false);
	
	if (!countCheck(theForm.txt_3_french_toast, "French Toast w/butter and syrup", 15)) return (false);
	
	if (!countCheck(theForm.txt_3_dannon_low_fat_fruit_on_bottom_yogurt, "Dannon Low Fat Fruit on Bottom Yogurts", 15)) return (false);
	
	if (!countCheck(theForm.txt_3_dannon_low_fat_fruit_on_bottom_yogurt_granola, "Dannon Low Fat Fruit on Bottom Yogurts w/granola", 15)) return (false);
	
	//if (!countCheck(theForm.txt_4_regular_coffee, "Regular Coffee")) return (false);
	
	//if (!countCheck(theForm.txt_4_decaf, "Decaffeinated Coffee")) return (false);
	
	//if (!countCheck(theForm.txt_4_tea, "Assorted Tea Service")) return (false);
	
	if (!numCheck(theForm.txt_4_bottled_spring_water, "Bottled Spring Water")) return (false);
	
	if (!numCheck(theForm.txt_4_sparkling_spring_water, "Sparkling Spring Water")) return (false);
	
	if (!numCheck(theForm.txt_4_2percent_milk, "2% Milk by the 1/2 pint")) return (false);
	
	if (!numCheck(theForm.txt_4_skim_milk, "Skim Milk by the 1/2 pint")) return (false);
	
	if (!numCheck(theForm.txt_4_orange_juice_bottle, "Orange")) return (false);
	
	if (!numCheck(theForm.txt_4_apple_juice_bottle, "Apple")) return (false);
	
	if (!numCheck(theForm.txt_4_cranberry_juice_bottle, "Cranberry")) return (false);
	
	if (!numCheck(theForm.txt_4_grapefruit_juice_bottle, "Grapefruit")) return (false);
	
	
	
	if (!numCheck(theForm.txt_5_sandwich_roastbeef, "Roast Beef")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_italian_submarine, "Italian Submarine")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_turkey_club_croissant, "Turkey Club Croissant")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_chicken_italiano, "Chicken Breast Italiano")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_gourmet_egg_salad, "Gourmet Egg Salad")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_smoked_ham_swiss, "Smoked Ham & Swiss")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_cobb_salad_pita, "Cobb Salad Pita")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_spicy_buffalo_chicken, "Spicy Buffalo Chicken")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_pesto_beef_focaccia, "Pesto Beef Focaccia")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_lemon_pepper_chicken, "Lemon Pepper Grilled Chicken")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_smoked_ham_gouda, "Smoked Ham & Gouda")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_chicken_caesar_salad_wrap, "Chicken Caesar Salad Wrap")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_malibu_turkey_wrap, "Malibu Turkey Wrap")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_new_orleans_muffaletta, "New Orleans Muffaletta")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_parisian, "The Parisian")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_provencal, "The Provencal")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_new_england_crab_salad, "New England Crab Salad")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_chicken_salad, "Chicken Salad")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_tuna_salad, "Tuna Salad")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_smoked_turkey_submarine, "Smoked Turkey Submarine")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_veggie_submarine, "California Veggie Submarine")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_salmon_croissant, "Smoked Salmon Croissant")) return (false);
	
	if (!numCheck(theForm.txt_5_sandwich_portobello_focaccia, "Grilled Portobello Focaccia")) return (false);
	
	if (!boxLunchCheck(theForm)) return (false);
	
	
	
	if (!numCheck(theForm.txt_6_salad_waldorf_tuna, "Waldorf Tuna Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_texas_rustler_steak, "Texas Rustler Stak Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_mexican_fiesta, "Mexican Fiesta Salad")) return (false);
	
	//if (!numCheck(theForm.txt_6_salad_atkins_crab_avocado, "Atkins Crab & Avocado Salad")) return (false);
	
	//if (!numCheck(theForm.txt_6_salad_atkins_diced_chicken_fennel_and_pesto, "Atkins Diced Chicken w/Fennel and Pesto Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_chinese_chicken, "Chinese Chicken Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_chicken_caesar, "Chicken Caesar Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_caesar, "Caesar Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_chef_chopped_salad, "Chef Mitch's Chopped Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_saladgarden_house_dressing, "Garden Salad w/House Dressing")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_orzo_pasta_tossed, "Orzo Pasta Tossed Salad")) return (false);
	
	if (!numCheck(theForm.txt_6_salad_asian_veggie_noodle, "Asian Veggie & Noodle Salad")) return (false);
	
	if (!saladLunchCheck(theForm)) return (false);
	
	
	if (!countCheck(theForm.txt_7_deli_lunch_sandwich_assortment_tray, "Deli Sandwich Assortment Tray", 12)) return (false);
	
	if (!countCheck(theForm.txt_7_deli_lunch_sandwich_basket, "Deli Sandwich Basket", 12)) return (false);
	
	if (!countCheck(theForm.txt_7_deli_lunch_mini_sandwich_basket, "Mini Sandwich Basket", 12)) return (false);
	
	if (!countCheck(theForm.txt_7_deli_lunch_gourmet_sandwich_basket, "Gourmet Sandwich Basket",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_enchiladas_chihuahua_monterey_cheese, "Chihuahua & Monterey Jack Cheeses",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_enchiladas_chihuahua_pulled_pork_monterey_cheese, "Pulled Pork & Monterey Jack Cheese",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_enchiladas_chihuahua_cheese, "Chihuahua Cheese",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_enchiladas_chicken_avocado, "Chicken & Avocado",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_fajitas_grilled_chicken, "Grilled Chicken",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_fajitas_grilled_steak, "Grilled Steak",12)) return (false);
	
	if (!countCheck(theForm.txt_8_south_border_lunch_fajitas_tacos_bar_san_lucas, "Taco Bar San Lucas",12)) return (false);
	
	if (!countCheck(theForm.txt_9_roasted_pork_loin_hoisin_orange, "Hoisin Orange", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_roasted_pork_loin_honey_dijon, "Honey Dijon", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_roasted_pork_loin_maple_bourbon, "Maple Bourbon", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_stuffed_chicken_apples_walnuts_goat_cheese, "Apples, Walnuts & Goat Cheese", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_stuffed_chicken_roasted_pepper_spinach_parmesan, "Roasted Red Pepper, Spinach & Parmesan", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_stuffed_chicken_sun_dried_tomato_onion_romano_cheese, "Sun-Dried Tomato, Onion, Garlic, Asiago & Romano Cheeses", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_roasted_beef_brisket_southwest_ancho_chile, "Southwest Ancho Chile", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_roasted_beef_brisket_herb_crusted, "Herb Crusted", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_whole_roasted_turkey, "Schaul's Own Whole Roasted Turkey", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_boneless_chicken_lemon_artichoke, "Lemon/Artichoke Cream", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_boneless_chicken_tomato, "Tomato Chicken Breast", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_boneless_chicken_basil, "Basil Chicken Breast", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_boneless_chicken_garlic, "Roasted Garlic Cream Chicken Breast", 15)) return (false);
	
	
	if (!countCheck(theForm.txt_9_boneIn_chicken_rosemary, "Fresh Rosemary, Garlic & Extra Virgin Olive Oil", 15)) return (false);
		 											
	if (!countCheck(theForm.txt_9_boneIn_chicken_vesuvio, "Roasted Chicken Vesuvio", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_boneIn_chicken_provencal, "Roasted Chicken Provencal", 15)) return (false);
	
	
	
	if (!countCheck(theForm.txt_9_momma_meatloaf, "Momma Schaul's Family Meatloaf", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_pan_seared_tilapia, "Pan Seared Tilapia", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_classic_beef_bourguignon, "Classic Beef Bourguignon", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_italian_beef, "Chicago Style Italian Beef", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_italian_sausage, "Chicago Style Italian Sausage", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_italian_combo, "Chicago Style Italian Beef/Sausage Combo", 15)) return (false);
	
	if (!countCheck(theForm.txt_9_healthy_stirfry, "Healthy Stir Fry", 15)) return (false);
	
	if (!countCheck(theForm.txt_10_texas_chili_groundbeef, "Ground Beef", 15)) return (false);
	
	if (!countCheck(theForm.txt_10_texas_chili_pulled_turkey, "Pulled Turkey", 15)) return (false);
	
	if (!countCheck(theForm.txt_10_veggie_burrito, "Veggie Burrito", 15)) return (false);
	
	if (!countCheck(theForm.txt_10_baked_cornflake_crusted_chicken, "Chef Mitch's Baked Cornflake Crusted Chicken", 15)) return (false);
	
	if (!numCheck(theForm.txt_11_lasagna_half_tray_cheese, "Cheese")) return (false);
	
	if (!numCheck(theForm.txt_11_lasagna_half_tray_meat, "Meat")) return (false);
	
	if (!numCheck(theForm.txt_11_lasagna_half_tray_vegetable, "Vegetable")) return (false);
	
	if (!numCheck(theForm.txt_11_lasagna_full_tray_cheese, "Cheese")) return (false);
	
	if (!numCheck(theForm.txt_11_lasagna_full_tray_meat, "Meat")) return (false);
	
	if (!numCheck(theForm.txt_11_lasagna_full_tray_vegetable, "Vegetable")) return (false);
	
	if (!countCheck(theForm.txt_11_whole_wheat_mushroom_ravioli, "Whole Wheat Mushroom Ravioli", 15)) return (false);
	
	if (!countCheck(theForm.txt_11_baked_mostaccioli_marinara, "Baked Mostaccioli Marinara", 15)) return (false);
	
	if (!countCheck(theForm.txt_11_penne_pasta_san_remo, "Penne Pasta San Remo", 15)) return (false);
		 											
	if (!countCheck(theForm.txt_11_pasta_primavera, "Pasta Primavera", 15)) return (false);
	
	if (!numCheck(theForm.txt_12_assorted_mini_pastries, "Assorted Mini Pastries*")) return (false);
	
	if (!numCheck(theForm.txt_12_dessert_bars, "Schaul's Signature Dessert Bars*")) return (false);
	
	if (!countCheck(theForm.txt_12_grandmas_cookies, "Grandma's Cookie Jar", 12)) return (false);
	
	if (!countCheck(theForm.txt_12_fudge_nut_brownies, "Fudge Nut Brownies", 12)) return (false);
	
	if (!numCheck(theForm.txt_12_cakes_cappucinno, "Cakes for any occasion")) return (false);
	
	if (!numCheck(theForm.txt_12_cakes_carrot, "Cakes for any occasion")) return (false);
	
	if (!numCheck(theForm.txt_12_cakes_chocolate_fudge, "Cakes for any occasion")) return (false);
	
	if (!numCheck(theForm.txt_12_cakes_oreo, "Cakes for any occasion")) return (false);
	
	if (!numCheck(theForm.txt_12_cakes_strawberry_shortcake, "Cakes for any occasion")) return (false);
	
	
	if (!numCheck(theForm.txt_12_dessert_basket_small, "Dessert Bar, Brownie and Cookie Basket: Small")) return (false);
	
	if (!numCheck(theForm.txt_12_dessert_basket_large, "Dessert Bar, Brownie and Cookie Basket: Large")) return (false);
	
	if (!numCheck(theForm.txt_12_cheesecakes_strawberry_labamba, "Cheesecakes")) return (false);
	*/
	
	
	/*if (!countCheck(theForm.txt_12_cheesecakes_big_blitz_snickers, "Cheesecakes")) return (false);
	
	if (!countCheck(theForm.txt_12_cheesecakes_new_york, "Cheesecakes")) return (false);
	
	if (!countCheck(theForm.txt_12_cheesecakes_choc_chip, "Cheesecakes")) return (false);
	*/
	
	/*
	if (!cheesecakeCheck(theForm)) return (false);
	
	
	if (!numCheck(theForm.txt_12_half_sheet_cake, "1/2 sheet cake")) return (false);
	
	if (!numCheck(theForm.txt_12_full_sheet_cake, "Full sheet cake")) return (false);
	
	if (!numCheck(theForm.txt_13_bottled_spring_water, "Bottled Spring Water")) return (false);
	
	if (!numCheck(theForm.txt_13_sparkling_spring_water, "Perrier Sparkling Spring Water")) return (false);
	
	if (!numCheck(theForm.txt_13_assorted_soft_drinks, "Assorted Premium Brand Soft Drinks")) return (false);
	
	if (!numCheck(theForm.txt_13_lemonade, "Lemonade (12 oz Cans)")) return (false);
	
	if (!numCheck(theForm.txt_13_iced_tea, "Iced Tea (12 oz Cans)")) return (false);
	
	//if (!countCheck(theForm.txt_13_coffee, "Regular Coffee")) return (false);
	
	//if (!countCheck(theForm.txt_13_decaf_coffee, "Decaf Coffee")) return (false);
	
	
	*/
  return (true);
}

function blankCheck(strField, strName)
{
 	
	if (strField.value == "")
  {
    alert("Please select a " + strName + ".");
    strField.focus();
    return (false);
  }

  return (true);
}

function countCheck(strField, strName, intQty)
{
  if(strField)
  {
	  if (isNumeric(strField.value))
	  {
	      if (strField.value > 0 && strField.value < intQty)
          {
            alert("You must order at least " + intQty + " of item: " + strName + ".");
            strField.focus();
            return (false);
          }
		  else
		  {
		     return (true);
		  }
      }
      else
      {  
	     alert("You must enter a number for " + strName + " quantity.");
	     strField.focus();
         return (false);
	  }
  }
  else
  { return true; }
}

function numCheck(strField, strName)
{
   if(strField)
   {
        if (!isNumeric(strField.value))
	    {  
	       alert("You must enter a number for " + strName + " quantity.");
	       strField.focus();
          return (false);
	    }
	    else
	     return (true);
  }
  else
  { return true; }
}

function isNumeric(sText)
{
   var ValidChars = "0123456789.";
   var IsNumber=true;
   var Char;

 
   for (i = 0; i < sText.length && IsNumber == true; i++) 
      { 
      Char = sText.charAt(i); 
      if (ValidChars.indexOf(Char) == -1) 
         {
         return (false);
         }
      }
   
	 return (true); 
}

function boxLunchCheck(theForm)
{
	if(!isNaN(parseInt(theForm.txt_5_Roast_Beef.value)))
	{
	   if( parseInt(theForm.txt_5_Roast_Beef.value)  < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Italian_Submarine.value)))
	{
	  if( parseInt(theForm.txt_5_Italian_Submarine.value)  < 3)
	  {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	}
	
	if(!isNaN(parseInt(theForm.txt_5_Turkey_Club_Croissant.value)))
	{
	   if( parseInt(theForm.txt_5_Turkey_Club_Croissant.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	}
	
	if(!isNaN(parseInt(theForm.txt_5_Chicken_Breast_Italiano.value)))
	{
	  if( parseInt(theForm.txt_5_Chicken_Breast_Italiano.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Gourmet_Egg_Salad.value)))
	{
	   if( parseInt(theForm.txt_5_Gourmet_Egg_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Smoked_Ham_and_Swiss.value)))
	{
	  if( parseInt(theForm.txt_5_Smoked_Ham_and_Swiss.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Cobb_Salad_Pita.value)))
	{
	   if( parseInt(theForm.txt_5_Cobb_Salad_Pita.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Spicy_Buffalo_Chicken.value)))
	{
	   if( parseInt(theForm.txt_5_Spicy_Buffalo_Chicken.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	}  
	
	if(!isNaN(parseInt(theForm.txt_5_Pesto_Beef_Focaccia.value)))
	{
	  if(  parseInt(theForm.txt_5_Pesto_Beef_Focaccia.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	}
	
	if(!isNaN(parseInt(theForm.txt_5_Lemon_Pepper_Grilled_Chicken.value)))
	{
	  if( parseInt(theForm.txt_5_Lemon_Pepper_Grilled_Chicken.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Smoked_Ham_Gouda.value)))
	{
	  if( parseInt(theForm.txt_5_Smoked_Ham_Gouda.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   } 
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Chicken_Caesar_Salad_Wrap.value)))
	{
	   if( parseInt(theForm.txt_5_Chicken_Caesar_Salad_Wrap.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Malibu_Turkey_Wrap.value)))
	{
	  if( parseInt(theForm.txt_5_Malibu_Turkey_Wrap.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_New_Orleans_Muffaletta.value)))
	{
	   if( parseInt(theForm.txt_5_New_Orleans_Muffaletta.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_The_Parisian.value)))
	{
	   if( parseInt(theForm.txt_5_The_Parisian.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_The_Provencal.value)))
	{
	       if(  parseInt(theForm.txt_5_The_Provencal.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_New_England_Crab_Salad.value)))
	{
	  if( parseInt(theForm.txt_5_New_England_Crab_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Chicken_salad.value)))
	{
	   if(  parseInt(theForm.txt_5_Chicken_salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Tuna_salad.value)))
	{
	   if( parseInt(theForm.txt_5_Tuna_salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Smoked_Turkey_Submarine.value)))
	{
	    if(  parseInt(theForm.txt_5_Smoked_Turkey_Submarine.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	/*if(!isNaN(parseInt(theForm.txt_5_sandwich_veggie_submarine.value)))
	{
	  quantity += parseInt(theForm.txt_5_sandwich_veggie_submarine.value);
	} */
	
	if(!isNaN(parseInt(theForm.txt_5_Smoked_Salmon_Croissant.value)))
	{
	  if( parseInt(theForm.txt_5_Smoked_Salmon_Croissant.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_5_Grilled_Portobello_Focaccia.value)))
	{
	   if(parseInt(theForm.txt_5_Grilled_Portobello_Focaccia.value) < 3)
	   {
	     alert("You must order at least 3 of any type of box lunch.");
		 theForm.txt_5_Roast_Beef.focus();
		 return (false);
	   }
	} 
	return (true);
}

function saladLunchCheck(theForm)
{

	if(!isNaN(parseInt(theForm.txt_6_Waldorf_Tuna_Salad.value)))
	{
	   if(parseInt(theForm.txt_6_Waldorf_Tuna_Salad.value)< 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_6_Texas_Rustler_Steak_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Texas_Rustler_Steak_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	}
	
	if(!isNaN(parseInt(theForm.txt_6_Mexican_Fiesta_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Mexican_Fiesta_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	}
	
	/*if(!isNaN(parseInt(theForm.txt_6_salad_atkins_crab_avocado.value)))
	{
	  quantity += parseInt(theForm.txt_6_salad_atkins_crab_avocado.value);
	} */
	
	/*if(!isNaN(parseInt(theForm.txt_6_salad_atkins_diced_chicken_fennel_and_pesto.value)))
	{
	  quantity += parseInt(theForm.txt_6_salad_atkins_diced_chicken_fennel_and_pesto.value);
	} */
	
	if(!isNaN(parseInt(theForm.txt_6_Chinese_Chicken_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Chinese_Chicken_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }  
	} 
	
	if(!isNaN(parseInt(theForm.txt_6_Chicken_Caesar_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Chicken_Caesar_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_6_Caesar_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Caesar_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	}  
	
	if(!isNaN(parseInt(theForm.txt_6_Chef_Mitchs_Chopped_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Chef_Mitchs_Chopped_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	}
	
	if(!isNaN(parseInt(theForm.txt_6_Garden_Salad_with_House_Dressing.value)))
	{
	  if( parseInt(theForm.txt_6_Garden_Salad_with_House_Dressing.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	}
	if(!isNaN(parseInt(theForm.txt_6_Orzo_Pasta_Tossed_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Orzo_Pasta_Tossed_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	} 
	
	if(!isNaN(parseInt(theForm.txt_6_Asian_Veggie_and_Noodle_Salad.value)))
	{
	  if( parseInt(theForm.txt_6_Asian_Veggie_and_Noodle_Salad.value) < 3)
	   {
	     alert("You must order at least 3 of any type of salad box lunch.");
		 theForm.txt_6_Waldorf_Tuna_Salad.focus();
		 return (false);
	   }
	} 
	return (true);
}

function cheesecakeCheck(theForm)
{
  /*var quantity = 0 + 0;
	
	if(!isNaN(parseInt(theForm.txt_12_Cheesecakes_Strawberry_Labamba.value)))
	{
	   quantity += parseInt(theForm.txt_12_Cheesecakes_Strawberry_Labamba.value);
	} 
	
	if(!isNaN(parseInt(theForm.txt_12_Cheesecakes_Big_Blitz_Snickers.value)))
	{
	  quantity += parseInt(theForm.txt_12_Cheesecakes_Big_Blitz_Snickers.value);
	}
	
	if(!isNaN(parseInt(theForm.txt_12_Cheesecakes_New_York.value)))
	{
	  quantity += parseInt(theForm.txt_12_Cheesecakes_New_York.value);
	}
	
	if(!isNaN(parseInt(theForm.txt_12_Cheesecakes_Chocolate_Chip.value)))
	{
	  quantity += parseInt(theForm.txt_12_Cheesecakes_Chocolate_Chip.value);
	} 
	
	if(quantity > 0 && quantity < 12)
	{
	   alert("You must order a combined qunatity of 12 items or greater from the CHEESECAKES MENU. You may mix and match items.");
		 theForm.txt_12_Cheesecakes_Strawberry_Labamba.focus();
		 return (false);
	}*/
	
	return (true);
}

