var dt = new FlashObject('/uploadedFiles/In_Stores_Now/New_In_Stores/preloader.swf', "conagra", "719", "573", "7", "#FFFFFF");
dt.addParam("base", "uploadedFiles/In_Stores_Now/New_In_Stores/");
dt.addParam("allowScriptAccess", "sameDomain"); 
dt.addParam("quality", "high"); 
dt.addParam("scale", "noscale"); 
dt.addParam("wmode", "opaque"); 
dt.addParam("bgcolor", "#ffffff"); 
dt.addParam("loop", "false"); 
dt.write("SMC");
  function showRecipePop(aRecipe)
        {
            var popUrl;
            var popWidth = 385;
            var popHeight = 500;
            
            switch(aRecipe)
            {
                case "egg_tomato_bagel":
                    popUrl = "ConAgra_popup_EB_recipe.html";
                    break;
                case "turkey_burgers":
                    popUrl = "ConAgra_popup_PAM_recipe.html";
                    break;
                case "spaghetti_salad":
                    popUrl = "ConAgra_popup_Hunts_recipe.html";
                    break;
            }
            window.open("uploadedFiles/In_Stores_Now/New_In_Stores/" + popUrl,"Recipes","menubar=yes,width=" + popWidth + ",height=" + popHeight + ",toolbar=no,scrollbars=yes,resizable=no");
        }
        function showOtherProductsPop(aBrand)
        {
            var popUrl;
            var popWidth = 385;
            var popHeight;
            
            switch(aBrand)
            {
                case "egg":
                    popUrl = "ConAgra_popup_EB.html";
                    popHeight = 296;
                    break;
                case "healthy":
                    popUrl = "ConAgra_popup_HC.html"; 
                    popHeight = 416;
                    break;
                case "hunts":
                    popUrl = "ConAgra_popup_Hunts_full.html";
                    popHeight = 575;
                    break;
                case "pam":
                    popUrl = "ConAgra_popup_PAM.html";
                    popHeight = 208;
                    break;
                case "popcorn":
                    popUrl = "ConAgra_popup_ORV1.html";
                    popHeight = 440;
                    break;
            }
            window.open("uploadedFiles/In_Stores_Now/New_In_Stores/" + popUrl,"OtherProducts","menubar=no,width=" + popWidth + ",height=" + popHeight + ",toolbar=no,scrollbars=yes,resizable=no");
        }