function play() { 
window.onload
embed = document.createElement("embed"); 
embed.setAttribute("src", "music/06.wma"); 
embed.setAttribute("hidden", true); 
embed.setAttribute("autostart", true); 
document.body.appendChild(embed); 
}
