function ClickWorks(thingName)
{
	document.getElementById('movieplayer-'+thingName).style.display='inline';
	document.getElementById('trigger-'+thingName).style.display='none';
	return false;
}

function PlayButton(soundName)
{
	document.write('<span id="movieplayer-'+soundName+'" style="display:none;">');
	QT_WriteOBJECT_XHTML('audio/'+soundName+'.mov', '49', '16', '');
	document.write('</span>');
	document.write('<span id="trigger-'+soundName+'" style="display:inline;">');
	document.write('<a href="audio/'+soundName+'.mov" target="_blank" onclick="ClickWorks(\''+soundName+'\');return false;"><img src="/images/playbutton.gif" alt="play" width="49" height="16" border="0" style="vertical-align:top;" /></a>');
	document.write('</span>');
}