<html>
<head>
<script type="text/javascript" src="swfobject.js"></script>
</head>
<body>
<h2>single mp3 file, with cover image:</h2>
<p id="player1"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var s1 = new SWFObject("mp3player.swf", "single", "240", "240", "7");
s1.addVariable("file","song1.mp3");
s1.addVariable("image","cover.jpg");
s1.write("player1");
</script>
<h2>playlist file, with different colors and EQ:</h2>
<p id="player2"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var s2 = new SWFObject("mp3player.swf", "playlist", "240", "135", "7");
s2.addVariable("file","playlist.xml");
s2.addVariable("backcolor","0x00000");
s2.addVariable("frontcolor","0xEECCDD");
s2.addVariable("lightcolor","0xCC0066");
s2.addVariable("displayheight","0");
s2.write("player2");
</script>
<h2>a single line, with repeat and downloadbutton and without digits:</h2>
<p id="player3"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var s3 = new SWFObject("mp3player.swf", "line", "240", "20", "7");
s3.addVariable("file","song1.mp3");
s3.addVariable("repeat","true");
s3.addVariable("showdigits","false");
s3.addVariable("showdownload","true");
s3.write("player3");
</script>
<p><a href="http://www.jeroenwijering.com/extras/wizard.html">online configuration wizard</a></p>
</body>
</html>