function insertFLVMovie(strElID, strFLVFilename, strImage, intWidth, intHeight) {
	var flashvars = {
		file: strFLVFilename,
		width: intWidth.toString(),
		height: intHeight.toString(),
		image: (strImage) ? strLocalBaseURI + "media/afbeeldingen/" + strImage : ""		
	};
	var params = {		
		allowfullscreen: "true"		
	};
	
	var attributes = {};
	swfobject.embedSWF(strFLVPlayerURL, strElID, intWidth.toString(), intHeight.toString(), "7.0.0", strExpressInstallURL, flashvars, params, attributes);
}
