function InsertPlayer(file,background)
{
	var code='';
	code+="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='290' height='24'>";
	code+="<param name='movie' value='player.swf?soundFile="+file+"' />";
	code+="<param name='quality' value='high' />";
    code+="<param name='bgcolor' value='"+background+"'>";
	code+="<param name='menu' value='false' />";
	code+="<param name='wmode' value='' />";
	code+="<embed src='player.swf?soundFile="+file+"' wmode='' quality='high' menu='false' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='290' height='24' bgcolor='"+background+"'></embed>";
	code+="</object>";
	document.write(code);
}
