function criaFlash(divId, width, height, url, wmode)
  {
    var doc = document.getElementById(divId);
    doc.innerHTML = '<embed src="' + url + '" width="' + width + '" height="' + height + '" wmode="' + wmode + '" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash">';
  }
