function showFlash(file,width,height,tstr){
  document.write('<h2>');
  document.write('<object data="'+file+'" type="application/x-shockwave-flash" height="'+height+'" width="'+width+'" title="'+tstr+'">');
  document.write('<param name="movie" value="'+file+'">');
//  document.write('<param name="movie" value="index.swf">');
  document.write('<param name="quality" value="high">');
  document.write('<param name="wmode" value="opaque">');
  document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
  document.write('</object>');
  document.write('</h2>');
}

// ポップアップ
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
