﻿function initSwf(divId, videoFile, imageFile, width, height) {
	swfobject.embedSWF(
		"/img/player.swf",
		divId,
		width,
		height,
		"9.0.0",
		"/img/expressInstall.swf",
		{
			file: videoFile,
			image: imageFile,
			stretching: "fill",
			backcolor: "0x303030",
			frontcolor: "0xEEEEEE",
			lightcolor: "0x404040",
			screencolor: "000000"
		},
		{ allowfullscreen: "true", wmode: "opaque" }
	);
}
