function showVideo(id, videoUrl, width, height)
{
	var movie = unityFlashObject('movie' + id, '/webdata/graphics/VideoPlayer.swf', width, height, 8)
	movie.AddParam('allowFullScreen', 'true');
	movie.AddParam('allowScriptAccess', 'always');
	movie.AddParam('flashVars','file=' + videoUrl);
	movie.Insert('video' + id, false);
}
