function writeFlash(movie)
{

  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
  document.write("codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' ");
  document.write("width='200' height='360'>");
  document.write("<param name='movie' value='" + movie + "'>");
  document.write("<param name='quality' value='high'>");
  document.write("<param name='LOOP' value='false'>");
  document.write("<embed src='" + movie + "' ");
  document.write("width='200' height='360' loop='false' quality='high'></embed>");
  document.write("</object>");

}

