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