Here's how I got a the Windows media player (playing John Denver's
AnniesSong.mid) on my web page without that "Click this to Activate or Control"
thing.

First, create a javascript in Dreamweaver and entitle it Mediaplayer.js

Copy and paste this into the blank .js file

// JavaScript Document
function RunMediaPlayer()
{
document.write('<param name="mediaplayer1" value="AnniesSong.mid"/>\n');
document.write('<embed src="AnniesSong.mid"></embed>\n');
document.write('</object>\n');
}

Next, in your .htm file (web page) put this line in the heading section
(between <head> and </head>)

<script src="MediaPlayer.js" type="text/javascript"></script>

and last,

put this in the body section where you want the media player

<script type="text/javascript">RunMediaPlayer();</script>

The media player plays .wav, mid, mp3, and video files like .avi ( I haven't
tested others) but I assume it plays anything the windows media player plays.

To see what it looks like:
[url]http://bellsouthpwp2.net/r/o/rogers22/pages/page3/Mplayer.htm[/url]