Hope this helps...
You must upload radio.swf and rcf.js to your web server, as these files are required.
This requires the "rcf.js" javascript file to be included in the "<head>" part of your html file, like so..
<head>
<script type="text/javascript" src="rcf.js"></script>
</head>
For the flash player, make sure to replace the MYDOMAIN and MYPORT parts
<!--Begin Flash Code, using javascript to pass W3C validation for cross-browser support -->
<div id="flash">
<b>If you see this message for more than 10 seconds, Javascript may be disabled, or you need to download and install <a href='http://get.adobe.com/flashplayer/'>Adobe Flash Player 10+</a>.</b>
<script type="text/javascript">
EmbedFlashMovie("flash", "radio.swf?tmpDomain=MYDOMAIN&tmpPort=MYPORT", 650, 400);
</script>
</div>
<!--End Flash Code -->
For the audio player (this embeds windows media player) TODO add width and hieght params
<!--Begin Audio Code, using javascript to pass W3C validation for cross-browser support -->
<div id="audio">
<script type="text/javascript">
EmbedAudio("audio", "mms://MYURL");
</script>
</div>
<!--End Audio Code -->