function write_flash(flash_file, width, height) {

  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '">');
  document.write('<param name="movie" value="' + flash_file + '" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="LOOP" value="false" />');
  document.write('<param name="wmode" value="opaque" />');
  document.write('<embed src="' + flash_file + '" wmode="opaque" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>');
  document.write('</object>');
}

function write_gallery(flash_file) {
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="433" height="450" id="CoffeeCup" align="middle">');
  document.write('<param name="movie" value="gallery/' + flash_file + '" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="scale" value="noscale" />');
  document.write('<param name="salign" value="lt" />');
  document.write('<param name="bgcolor" value="#ffffff" />');
  document.write('<embed src="gallery/' + flash_file + '" quality="high" bgcolor="#ffffff" width="433" height="450"');
  document.write(' name="CoffeeCup" scale="noscale" salign="lt" align="middle" type="application/x-shockwave-flash"');
  document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}

function write_flash_vars(flash_file, width, height, file_name) {
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + width + '" height="' + height + '">');
  document.write('<param name="movie" value="/flash/video_player.swf?video=/videos/'+file_name+'" />');
  document.write('<param name="quality" value="high" />');
  document.write('<embed src="/flash/video_player.swf?video=/videos/'+file_name+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>');
  document.write('</object>');
}

function write_videoplayer(file_name, div_id, width, height, play) {
  var content;
  content = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'">';
  content = content + '<param name="movie" value="/flash/video_player.swf?video=/videos/'+file_name+'&onstart='+play+'" />';
  content = content + '<param name="quality" value="high" />';
  content = content + '<embed src="/flash/video_player.swf?video=/videos/'+file_name+'&onstart='+play+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
  content = content + '</object>';
  
  document.getElementById(div_id).innerHTML = content;
}
