function decodescript(script)
{
	return unescape(script.replace(/@/g,'%'));
}

function displayplayer(filepath)
{
	filepath = decodescript(filepath);
	
		
	document.writeln("<object type='application/x-shockwave-flash' data='swf/player.swf' id='audioplayer1' height='24' width='290'>");
	document.writeln("<param name='movie' value='swf/player.swf'>");
	document.writeln("<param name='FlashVars' value='playerID=1&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;loop=no&amp;autostart=no&amp;soundFile=" + filepath + "'>");
	document.writeln("<param name='quality' value='high'>");
	document.writeln("<param name='menu' value='false'>");
	document.writeln("<param name='wmode' value='transparent'>");
	document.writeln("</object>");
}