createVideo = function() {
// write out the swf container for cross-browser compatibility

	var flashObject = new SWFObject('scripts/videos/player_standard.swf', 'swf_player', '700', '470', '7', '#fff');

	flashObject.addParam('AllowScriptAccess', 'sameDomain');
	flashObject.addParam('scaleMode', 'noScale');
	flashObject.addParam('allowNetworking', 'all');
	flashObject.addParam('flashvars', "config={configFileName:'/scripts/videos/default.cfg',videoFile:'../../media/documentary.flv'}");

	flashObject.useExpressInstall('http://staging.anurja.com/radicalpassions/scripts/videos/express_install.swf'); // let the user install flash if they don't have it yet
	flashObject.setAttribute('xiRedirectUrl', 'http://www.radicalpassions.com/media.html'); // make sure they get back to videos if they install
	
	flashObject.write('documentary_container');
}; // end function createVideo()