function Attr_playMusic(sFileName,folder)
{
  var sFilePath = "prod_img/attr/" + folder + "/" + sFileName;
  var objChild = window.open("", "WndPlayMusic", "status=0,scrollbars=0,menubar=0,resizable=1,width=300,height=150");
  var szCode = "<html><head><title>" + sFileName + "</title></head><body style='margin:0 0 0 0;background-color:dimgray;'>" +
    "<table width='100%' border='0' cellspacing='2' cellpadding='3'><tr><td align='center' style='font-family:tahoma,verdana;font-size:12px;color:white;font-weight:bold'>" + sFileName + "</td></tr></table>" +
    "<embed src='" + sFilePath + "' autostart=true repeat=false loop=false></embed></body></html>";
  objChild.document.write(szCode);
  objChild.document.close();
  objChild.focus();
}