var imgpath = "/sitedesign/lessons/letter_sounds/function_joinwavs.php?ssps=";
function getSound(str)
{
currsound = imgpath+str; 
ih = "<embed loop='false'  autostart='true' src='"+currsound+"' hidden='true'>";
document.getElementById("auEmb").innerHTML = ih;

}

function getSoundName(str)
{
imgpath = "/sitedesign/lessons/letter_sounds/";
currsound = imgpath+str; 
ih = "<embed loop='false'  autostart='true' src='"+currsound+"' hidden='true'>";
document.getElementById("auEmb").innerHTML = ih;

}

function getLink(str)
{
currsound = imgpath+str; 
window.open(currsound,'word','top=-1000,left=-10000');
word.blur();
//alert(document.getElementById("auEmb").innerHTML);
}

function getName(str)
{
currsound = imgpath+str; 
document.getElementById("auEmb").innerHTML = currsound+"<embed autostart='true' src='"+currsound+"' hidden='true'>";
//alert(document.getElementById("auEmb").innerHTML);
}

function stopSound(str) 
{}



