	// START: displayFlashProduct

		
	function displayFlashProduct (url, parametername, parametervalue, container, width, height) {
			   var so = new SWFObject(url, "mymovie", width, height, "8", "#000");
			   so.addParam("quality", "high");
			   so.addParam("wmode", "transparent");
			   so.addParam("salign", "tl");
			   so.addVariable(parametername, parametervalue);
			   so.useExpressInstall('expressinstall.swf');
			   // The parameter below is the container the flash movie will be written out in, it must exist on the page.
			   so.write(container);
		}
	//END: displayFlashProduct

