přehrávač .flv souborů nefunguje

Dobrý den, umístil jsem na html stránku přehrávač flv souborů a stránka z webu nefunguje. Na lokálním serveru v PC mi to funguje. HTML kód byl vygenerován několika aplikacemi. Posledně použitý - pro zjednodušení vypouštím vše, uvádím jen holou stránku:

<head>
<META http-equiv="content-type" content="text/html; charset=windows-1252">
<title>AVS Flash Player</title>
<!-- SWFObject embed by Geoff Stearns geoff@deconcept.com http://blog.deconcept.com/swfobject/ -->
<script type="text/javascript" src="swfobject.js"></script>
<style type="text/css">
body {
background-color: #FFFFFF;
font: .8em/1.3em verdana,arial,helvetica,sans-serif;
}

#flashcontent {
border: solid 0px #000;
width: 450px;
height: 370px;
float: left;
}
</style>
</head>
<body>
<div id="flashcontent">
<strong>You need to upgrade your Flash Player.</strong>
</div>
<script type="text/javascript">
var so = new SWFObject('avs4you_player.swf', 'player', '450', '370', '7', "#ffffff");
so.addParam("allowScriptAccess","always");
so.addParam("allowFullScreen","true");
so.addParam("wmode", "window");
so.addParam("scale", "noscale");
so.addVariable("file", "Karneval.flv");
so.addVariable("width", "450");
so.addVariable("height", "370");
so.addVariable("theme", "Glass.swf");
so.addVariable("repeat", "0");
so.addVariable("autostart", "0");
so.addVariable("image", "");
so.addVariable("volume", "50");
so.addVariable("scaleonresize", "none");
so.addVariable("top_caption", " ");
so.addVariable("bottom_caption", " ");
so.addVariable("v", getQueryParamValue("v"));
so.write("flashcontent");
</script>
</body>

potřebné soubory (avs4you_player.swf, Glass.swf a swfobject.js) jsem na web umístil.
prosím o radu, kde dělám chybu.
děkuji.