function CreateControl(ObjectID, WIDTH, HEIGHT, BGCOL, URL, AUTOSTART, Version, Quality) {
	var CodeBase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="+Version;
	var pluginspage = "http://www.macromedia.com/go/getflashplayer";
	var embed_type = "application/x-shockwave-flash";
	
	if (!Quality) {
		Quality = "high";	
	}

	var obj = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+ CodeBase +'" id="' + ObjectID + '" width="' + WIDTH + '" height="' + HEIGHT +'" border="0"> '
	+ '<param name="movie" value="' + URL + '"/> '
	+ '<param name="allowScriptAccess" value="always" /><param name="scale" value="noscale" /> '
	+ '<param name="quality" value="high"> '
	+ '<param name="menu" value="false" />'
	+ '<param name="autoStart" value=' + AUTOSTART + '/> '
	+ '<param name="bgcolor" value="' + BGCOL + '" /> '
	+ '<embed src="' + URL + '" allowScriptAccess="sameDomain" quality="high" scale="noscale" bgcolor="' + BGCOL + '" pluginspage="'+ pluginspage +'" type="'+ embed_type +'" width="' + WIDTH + '" height="' + HEIGHT +'"></embed>'
	+ '</object>';	
	
	document.write(obj);
}
