var lPlaySound=1;
function PlaySound(cLink) 
{
//	alert(cLink);
	if(lPlaySound==1)
		document.getElementById("sndspan").innerHTML="<embed src='"+cLink+"' hidden=true autostart=true loop=false>";
}
function SoundLink(cLink)
{
	if(lPlaySound==1)
		return void(0);
	else
		window.open(cLink);
}

function SoundDownload(cLink)
{
	window.open(cLink);
}
