function generateFlash(movie, width, height, id, align, bgUrl, bLink)
{
  document.write('<div class="baner-flash" style="background:url(' + bgUrl + ') no-repeat left top;' + + (height==0 ? '' : ' height:'+height +'px;') + '"' + (width==0 ? '' : ' width="'+width +'"') + '>');
  document.write('<div class="itsflash"><object type="application/x-shockwave-flash" data="'+movie+(width==0 ? '' : '" width="'+width)+(height==0 ? '' : '" height="'+height)+'" id="'+id+'" align="'+align+'">');
  document.write('<param name="movie" value="'+movie+'" />');
  document.write('<param name="wmode" value="opaque" />');
  document.write('<param name="bgcolor" value="#ffffff" />');
  document.write('<param name="autoStart" value="-1" />');
  document.write('</object><a href="' + bLink + '" style="height: ' + height + 'px;"></a></div>');
  document.write('</div>');
}

