Trun off flash player autoplay in JS code

is there somewhere in the code below that I can configure the video player to not autoplay? If so, how would I do that?
Thanks in advance.

<script type=“text/javascript”>
var params = {
quality: “high”,
scale: “noscale”,
wmode: “transparent”,
allowscriptaccess: “always”,
bgcolor: “#ffffff
};

	var attributes = {
		id: "qvlVideoPlayer",
		name: "qvlVideoPlayer"
	};
	
	var flashvars = {
		xmlPath: "http://www.exampledomain.com/feeds/video/15585/detail.xml",
		swfPath: "http://www.exampledomain.com/videos/swfs",
		primary: "0x319cb5",
		secondary: "0xffffff",
		disable_title: false,
		disable_embed: false,
		disable_share: 1,
		disable_send: 1,
		disable_embedViewMore: true,
		disable_rating: true,
		send_mailto: true,
		simple_endScreen: true,
		simple_infoPanel: true
	};

	swfobject.embedSWF("http://www.exampledomain.com/sites/all/themes/folder/swfs/player.swf", "headVid", "640", "360", "10.0.0", "expressInstall.swf", flashvars, params, attributes);

</script>