This:
<a href="index.html" title="play a note" onmouseover="onStringRollOver('sounds/a3.wav')">a</a>calls this:
function onStringRollOver(surl) {
// play the specified sound by embedding it in the page when requested
document.getElementById("soundspan").innerHTML= "<embed src='"+surl+"' hidden=true autostart=true loop=false>";
}which embeds the sound in this:
<span id="soundspan"></span>
IE7 is throwing an "object expected" error for the a element. What gives?


