function Play (file) 
{

	var path = '<embed src="/resources/11/files/35/' + file + '.mp3" autostart="true" loop="false" hidden="true" height="0" width="0"/>';
	//alert(path);
	document.getElementById (file).innerHTML = path + '<img src="/common/images/audbull.gif" style="cursor:pointer;" onclick="Stop(' + "'" + file + "'" + ')"/>';
}
function Stop (file) 
{
	document.getElementById (file).innerHTML = '<img src="/common/images/audio.gif" style="cursor:pointer;" onclick="Play(' + "'" + file + "'" + ')"/>';
}

