function dispFlash() { var ua = navigator.userAgent; // ユーザーエージェント var nWidth, nHeight; // サイズ var nHit = ua.indexOf("MSIE"); // 合致した部分の先頭文字の添え字 var bIE = (nHit >= 0); // IE かどうか if (bIE) { nWidth = 'width="100%"'; nHeight ='height="100%"'; } else { nHeight='height='+window.screen.height; nWidth ='width="100%"'; } document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); }