function insert_movie(url, width, height) {
  document.write('<object width="'+ width +'" height="'+ height +'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000">');
  document.write('<param name="movie" value="'+ url +'"></param>');
  document.write('<param name="wmode" value="transparent"></param>');
  document.write('<embed src="'+ url +'" type="application/x-shockwave-flash" wmode="transparent" width="'+ width +'" height="'+ height +'"></embed>');
  document.write('</object>');
}  