

function swf_mp3(URL,sound_id) {

	
	var embed_string = "";
	//<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/WG9mpRq4ecA&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/WG9mpRq4ecA&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
	embed_string += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="290" height="24" id="';
	embed_string += sound_id;
	embed_string += '">';
	embed_string += '<param name="movie" value="player.swf"/>';
	embed_string += '<param name="FlashVars" value="playerID=1'
	embed_string += sound_id;
	embed_string += '&soundFile=';
	embed_string += URL;
	embed_string += '"/>';
	embed_string += '<param name="quality" value="high"/>';
	embed_string += '<param name="menu" value="false"/>';
	embed_string += '<param name="wmode" value="transparent"/>';
			

	embed_string += '<!--[if !IE]>-->';
	embed_string += '<object type="application/x-shockwave-flash" data="player.swf" "width="290" height="24">';
	embed_string += '<param name="wmode" value="transparent" />';
	embed_string += '<param name="FlashVars" value="playerID=1&soundFile=';
	embed_string += URL;
	embed_string += '"/>';
	embed_string += '<!--<![endif]-->';
	embed_string += '<a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a>';
	embed_string += '</object>';
	document.write(embed_string);
}