function flash( name, height, width, id, alt ){
if (window.ActiveXObject){		// download URL for IE OCX
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
  document.write(' codebase="http://download.macromedia.com');
  document.write('/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"');
  document.write(' height="' + height + '" width="' + width + '" id="' + id + '" standby="' + alt +'" />');
  document.write(' <param name="movie" value="' + name + '" />');
  document.write(' <param name="quality" value="high" />');
  document.write(' <param name="swliveconnect" value="true" />');
  document.write(' <param name="Loop" value="false" />');
  document.write('<\/object>');
} else {				// browser supports Netscape Plugin API
  document.write('<object id="' + id + '" data="' + name + '" type="application/x-shockwave-flash" height="' + height + '" width="' + width + '" standby="' + alt +'" />');
  document.write(' <param name="movie"       value="' + name + '" />');
  document.write(' <param name="quality"     value="high" />');
  document.write(' <param name="swliveconnect" value="true" />');
  document.write(' <param name="Loop" value="false" />');
  document.write('<\/object>'); 
}
}