/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */

function createSWF (brano, id) {
  if (brano != '')  {
   var so = new SWFObject("/playerMini.swf", "mymovie", "50", "30", "7", "#FFFFFF");
   so.addVariable("overColor","#8C2D50");
   so.addVariable("playerSkin","5");
   so.addVariable("autoPlay", "no");
   so.addVariable("soundPath", brano);
   so.write(id);
  }
}

