// JScript source code
		function openIngWindow(BrandAbbr, NutritionDesc) {
		  url = "nutrition_desc.asp?BrandAbbr=" + BrandAbbr + "&NutritionDesc=" + NutritionDesc;
		  ht = 150;
		  wd = 350;
		  rsz = "no";
		  scr = "yes";
		  //alert(url);
		  document.cookie = "Yumpopup=" + escape(NutritionDesc) + ";"
		  //window.open(url, "NutritionDesc", "height=200, width=300, scrollbars=yes");
		  gowindow(url,"itemdetail",ht,wd,rsz,scr);
		}
		
		function gowindow(newURL,winname,ht,wd,rsz,scr) {
	      if (navigator.appName == "Netscape") {
		    sswindow = window.open(newURL,winname,"menubar=no,height="+ht+",width="+wd+",toolbar=no,location=no,resizable="+rsz+",scrollbars="+scr+",status=yes")
		    sswindow.location.href=newURL;
            sswindow.focus();
	      } else {
		    sswindow = window.open(newURL,winname,"height="+(ht-30)+",width="+wd+",resizable="+rsz+",scrollbars="+scr)
		    sswindow.location.href=newURL;
            sswindow.focus();
	      }
        }
		
		function submitSelections(catID, stepLevel) {
			document.frmCreateMeal.SelCatID.value = catID;
			document.frmCreateMeal.StepLevel.value = stepLevel;
			document.frmCreateMeal.SelCatOrCalcOnly.value = "true";
			document.frmCreateMeal.submit();
		}