

function showFlash(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,0,0"  width="'+width+'" height="'+height+'" hspace="0" vspace="0" border="0">');
  document.write('<param name="movie" value="'+file+'" />');
  document.write('<param name="menu" value="false" />');
  document.write('<param name="quality" value="high" />');
  
  document.write('<embed src="'+file+'" menu="false" quality="high" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
  document.write('</object>');
}


function showFlashSecure(file, width, height){
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"  width="'+width+'" height="'+height+'" hspace="0" vspace="0" border="0">');
  document.write('<param name="movie" value="'+file+'" />');
  document.write('<param name="menu" value="false" />');
  document.write('<param name="quality" value="high" />');
  
  document.write('<embed src="'+file+'" menu="false" quality="high" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" />');
  document.write('</object>');
}
