// Work-around for Microsoft's IE problem
function writeFlash(path, h, w)
{
  document.write('      <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"')
  document.write('        codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"')
  document.write('        width="'+w+'" height="'+h+'">')
  document.write('    	  <param name="allowScriptAccess" value="sameDomain">')
  document.write('      <param name="movie" value="'+path+'">')
  document.write('      <param name="menu" value="false">')
  document.write('      <param name="quality" value="high">')
  document.write('      <param name="bgcolor" value="#000000">')
  document.write('      <embed border="0" src="'+path+'" quality="high" menu="false" bgcolor="#000000" allowScriptAccess="sameDomain"')
  document.write('       pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"')
  document.write('       width="'+w+'" height="'+h+'"></embed></object>')
}