// ********************
// * Embed MP3 Player *
// ********************
// embeds a player in the div section specified by DivID
// avoids click to activate message in Internet Explorer for embedded media
// copyright (c) 2006  WINtegrated Solutions LLC
//
function EmbedMP3Player(DivID, MediaURL)
{
		var d = document.getElementById(DivID);
			d.innerHTML = '<object type="application/x-shockwave-flash" data="player/player.swf" width="290" height="24" id="flash' + DivID + '">' +
				'<param name="movie" value="player/player.swf" />' + 
				'<param name="FlashVars" value="playerID=flash' + DivID + '&bg=0xf8f8f8&leftbg=0xeeeeee&lefticon=0x666666&rightbg=0xcccccc&rightbghover=0x999999&righticon=0x666666&righticonhover=0xffffff&text=0x666666&slider=0x666666&track=0xFFFFFF&border=0x666666&loader=0x9FFFB8&soundFile=' + MediaURL + '" />' +
				'<param name="quality" value="high" />' +
				'<param name="menu" value="false" />' + 
				'<param name="wmode" value="transparent" />' +
				'</object>' + 
				'<p class="note">click above play icon to listen</p>';
}


