function make_player(div,fic,width,player_width)
{
$(div).toggle(); 
//var str = '<object type="application/x-shockwave-flash" data="http://www.ememultimedia.com/ng/files/player_mp3_maxi.swf" width="'+width+'" height="20">';
//str  += '<param name="movie" value="http://www.ememultimedia.com/ng/files/player_mp3_maxi.swf" />';
//str += '<param name="bgcolor" value="#ffffff" />';
//str += '<param name="FlashVars" value="mp3='+fic+'&amp;showvolume=1&amp;autoplay=1&amp;volume=100&amp;showstop=1" />';
//str += '</object>';

var str = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='"+ player_width + "' height='24' id='single1' name='single1'>";
str += "<param name='movie' value='http://www.radioleon.com/ng/files/jwplayer.swf'>";
str += "<param name='allowfullscreen' value='false'>";
str += "<param name='allowscriptaccess' value='always'>";
str += "<param name='wmode' value='transparent'>";
str += "<param name='flashvars' value='file="+fic+"&autostart=true&type=sound'>";
str += "<embed type='application/x-shockwave-flash' id='single2' name='single2' src='http://www.radioleon.com/ng/files/jwplayer.swf'";
str += "width='"+ player_width +"' height='24' bgcolor='undefined' allowscriptaccess='always' allowfullscreen='false' wmode='transparent'";
str += "flashvars='file="+fic+"&autostart=true&type=sound' /> </object>";

$(div).update(str);

}

//jQuery(document).ready(function() {
//  jQuery('.slickbox').hide();
//});
