вот базовый пример для SWFObject:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Embedding FlowPlayer using SWFObject</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="js/swfobject.js"></script>
<meta name="language" content="en" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!-- SWFObject downloads and documentation: http://code.google.com/p/swfobject/wiki/documentation -->
<script type="text/javascript">
function embedFlash()
{
var flashvarsObj = {
};
//flashvars.config = config;
var paramsObj = {
allowScriptAccess: "sameDomain",
allowFullScreen: "true"
};
var attributesObj = {};
swfobject.embedSWF("swf/test.swf", "flowplayer_container", "300", "200", "10", "swf/expressInstall.swf", flashvarsObj, paramsObj, attributesObj);
}
</script>
</head>
<body>
<div id="flash_container" style="background-color:#ff0000; width:300px; height:200px;">Your SWF file will be placed here.</div>
<script type="text/javascript">embedFlash();</script>
</body>
</html>
Вы можете скачать файл swfobject.js и файл expressinstall.swf по ссылке, которую я отправил вам ранее.
Удачи, Роб