function CreateControl(DivID,file) {
	var thisNum = getNum();
	var file = "mod_05-" + thisNum[0] + ".swf";
	var d = document.getElementById(DivID);
	var str;
	str  = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"';
	str += ' codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"';
	str += ' width="800" height="451" id="splash" align="middle">\n';
	str += '<param name="allowScriptAccess" value="always" />\n';
	str += '<param name="movie" value="flash/'+file+'" />\n';
	str += '<param name="quality" value="best" />\n';
	str += '<param name="wmode" value="transparent" />\n';
	str += '<param name="bgcolor" value="#000000" />\n';
	str += '<embed src="flash/'+file+'" quality="best" wmode="transparent" bgcolor="#000000"';
	str += ' width="800" height="451" name="splash" align="middle" allowScriptAccess="always"';
	str += ' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n';
	str += '</object>\n';
	d.innerHTML = str;
}

