function KMLE_playpronun(soundUrl)
{
	if(navigator.appName == "Microsoft Internet Explorer")  {
		if (document.all) document.all.prons.src = soundUrl;
	}
	else  {
		var IFrameObj = document.getElementById("pronsFrame");
		IFrameObj.src = "about:blank";
		IFrameObj.src = soundUrl;
		setTimeout("endPlay()", 10000);
	}
}

function KMLE_innerPronun(soundUrl)
{
	container = document.getElementById('KMLEsoundContainer');
	container.innerHTML = '<EMBED id="KMLEmysound" type="audio/wav" autostart="true" hidden="true" width="0" height="0" enablejavascript="true" src="'+soundUrl+'"></EMBED>';
}

function endPlay() {
	IFrameObj.src = "about:blank"; //so refresh won't replay sound
 }
