function importflash(f, w, h, t) {
   document.write('<object type="application/x-shockwave-flash" data="' + f + '" width="' + w + '" height="' + h + '">\n');
   document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
   document.write('<param name="movie" value="' + f + '" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="menu" value="false" />\n');
   if (t == true) {
        document.write('<param name="wmode" value="transparent" />\n');
        alert('hello')
   }
   document.write('</object>\n');
}