function DisplayVideo(flvFile, imgFile) {
    swfobject.embedSWF(
        "/flv/player.swf",
		"video-placeholder",
		"450",
		"326",
		"9.0.0",
		"/flv/expressInstall.swf",
		{
		    file: flvFile,
		    image: imgFile,
		    stretching: "uniform",
		    backcolor: "0x147096",
		    frontcolor: "0xEFFFFF",
		    lightcolor: "000000",
		    screencolor: "000000", 
		    autostart: 'true'
		},
		{ allowfullscreen: "true", wmode: "opaque" }
	);

}