						function createMusic(id,url) {
						//str="<embed id='musicrecord src='"+url+"' type='application/x-wav' width='0' height='0' autostart='false'  />";
						//document.getElementById("musicControl").inset  .innerHTML=str;
						//document.getElementById("musicrecord").play();
						var embed=document.createElement("embed");
						embed.setAttribute('src',url);
						embed.setAttribute('player'+id,'musicrecord');
						embed.setAttribute('type','application/x-wav');
						embed.setAttribute('width','120');
						embed.setAttribute('height','30');
						embed.setAttribute('autostart','false');
						//document.getElementById("musicControl").innerHTML="";
						
						//document.getElementById("musicControl").appendChild(embed);
						var playbutton=document.getElementById(id);
						playbutton.parentNode.replaceChild(embed,playbutton);
						}