function c_player(id,swf_url,mp3_url) {

 var Explorer=(navigator.appName.indexOf("Explorer")!=-1);

 if ( Explorer ) {
  var page = window.open("",id,"width=380,height=36");
  page.document.open();
  page.document.write("<html><body>");
  
  //page.document.write("<center><font size=\"2\">"+mp3_url+"</font></center>");
  page.document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0\" width=\"320\" height=\"34\" hspace=\"0\" vspace=\"0\">");
  page.document.write("<param name=\"movie\" value=\"");
  page.document.write(swf_url);
  page.document.write("c_player.swf?url=");
  page.document.write(mp3_url);
  page.document.write("\"><param name=\"quality\" value=\"high\">");
  page.document.write("<embed  src=\"");
  page.document.write(swf_url);
  page.document.write("c_player.swf?url=");
  page.document.write(mp3_url);
  page.document.write("\" quality=\"high\" pluginspage=\"http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"320\" height=\"34\" hspace=\"0\" vspace=\"0\"></embed></object>");
  page.document.write("<a href=\"");
  page.document.write(mp3_url);
  page.document.write("\" target=\"_blank\" style=\"text-decoration: none;\">");
  page.document.write("<img src=\""+swf_url+"c_dl.gif\" width=\"33\" height=\"34\" vspace=\"0\" hspace=\"0\" border=\"0\" ></a>");
  page.document.write("<br /><center><a href='javascript:window.close();'>CLOSE</a></center>");
  page.document.write("</body></html>");
  page.document.close();
  return;
 }
 if ( ! document.getElementById(id) ) return;
 if ( ! document.createElement ) return;

 var insert_point = document.getElementById(id);
 if ( insert_point.firstChild ) return; 



 var ele1 = document.createElement("object");
 ele1.setAttribute('classid','clsid:D27CDB6E-AE6D-11cf-96B8-444553540000');
 ele1.setAttribute('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0');
 ele1.setAttribute('width','320');
 ele1.setAttribute('height','34');
 ele1.setAttribute('hspace','0');
 ele1.setAttribute('vspace','0');
 insert_point.appendChild(ele1);

 var ele2 = document.createElement("param");
 ele2.setAttribute('name','movie');
 ele2.setAttribute('value',swf_url+'c_player.swf?url='+mp3_url);
 ele1.appendChild(ele2);

 var ele3 = document.createElement("param");
 ele3.setAttribute('name','quality');
 ele3.setAttribute('value','high');
 ele1.appendChild(ele3);


 var ele4 = document.createElement("embed");
 ele4.setAttribute('src',swf_url+'c_player.swf?url='+mp3_url);
 ele4.setAttribute('quality','high');
 ele4.setAttribute('width','320');
 ele4.setAttribute('height','34');
 ele4.setAttribute('pluginspage','http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash');
 ele4.setAttribute('type','application/x-shockwave-flash');
 ele4.setAttribute('hspace','0');
 ele4.setAttribute('vspace','0');
 ele1.appendChild(ele4);

 var ele5 = document.createElement("a");
 ele5.setAttribute('href',mp3_url);
 ele5.setAttribute('target','_blank');
 ele5.setAttribute('style','text-decoration: none;');
 insert_point.appendChild(ele5);

 var ele6 = document.createElement("img");
 ele6.setAttribute('src',swf_url+'c_dl.gif');
 ele6.setAttribute('width','33');
 ele6.setAttribute('height','34');
 ele6.setAttribute('vspace','0');
 ele6.setAttribute('hspace','0');
 ele6.setAttribute('border','0');
 ele5.appendChild(ele6);

}
