
function showMovie(whichPage)/* for old version of home page using one flash movie */
	{
	if (whichPage=="home")
		{
			newMovie='flash/BB_homepageUpdate0218.swf';
			w=550;
			h=275;
			xmlPath='flash/GB_featureHome_links.xml';
			target = "bushBeansHomeFlash";
		}

	else if (whichPage=="home2") /* for new version of home page using two flash movies, main movie */
		{
			newMovie='flash/BB_homepageUpdate0209.swf';
			w=550;
			h=275;
			xmlPath='';
			target = "bushBeansHomeFlash";
		}
	else if (whichPage=="home3") /* for new version of home page using two flash movies, side movie */
		{
			newMovie='flash/4925_Bush_Penalty_205x275.swf';
			w=205;
			h=275;
			xmlPath='';
			target = "bushBeansSideFlash";
		}		
	else if (whichPage=="grillinbeans") /* for product page */
		{
			newMovie='../../flash/recipes/GB_Product_feature.swf';
			w=758;
			h=338;
			xmlPath='../../flash/recipes/GB_featureRecipes_links.xml';
			target = "bushBeansHomeFlash";
		}
	
	

	var s1 = new SWFObject(newMovie,"single",w,h,"7");
	s1.addParam("allowfullscreen","true");
	s1.addVariable("displayheight",h);
	s1.addVariable("file",newMovie);
	s1.addVariable("xmlPath",xmlPath);
	s1.addVariable("autostart","true");
	s1.write(target);
	}
	
