// ここから本文// ブラウザのバージョンの最初の数字を抜き出すvar b_versionNum = navigator.appVersion.charAt(0);// ブラウザの名前の最初の文字を抜き出すvar b_Name = navigator.appName.charAt(0);// 以下、ブラウザ判定をし、ブラウザに合ったCSSを書き出すdocument.writeln("<STYLE TYPE='text/css'><!--");document.writeln("A:link { color:#FE2E09; text-decoration:none; }");document.writeln("A:visited { color:#FE2E09; text-decoration:none; }");document.writeln("A:hover { color:#FF836B; }");document.writeln("A:active { color:#000000; }");document.writeln("A.menu:link { color:#000000; }");document.writeln("A.menu:visited { color:#333333; }");document.writeln("A.menu:active { color:#000000; }");document.writeln("A.menu { text-decoration:none; }");document.writeln("A.bk:link { color:#000055; }");document.writeln("A.bk:visited { color:#FE2E09; }");document.writeln("A.bk:hover { color:#FF836B; }");document.writeln("A.bk:active { color:#000000; }");document.writeln("A.bk { text-decoration:none; }");if(navigator.appVersion.indexOf("Mac") > -1) {if( b_Name == "M") {// Macintosh InternetExplorerの場合document.writeln(".sma{font-Size:10px; line-height:13px;}");document.writeln(".nor{font-Size:12px; line-height:16px;}");document.writeln(".nor2{font-Size:13px; line-height:16px;}");document.writeln(".lar{font-Size:20px; line-height:24px;}");}else {// Macintosh NETSCAPE 6~の場合document.writeln(".sma{font-Size:10px; line-height:13px}");document.writeln(".nor{font-Size:12px; line-height:18px}");document.writeln(".nor2{font-Size:13px; line-height:18px}");document.writeln(".lar{font-Size:20px; line-height:24px}");}}else {if( b_Name == "M") {// Windows InternetExplorerの場合document.writeln(".sma{font-Size:11px; line-height:13px; letter-spacing:1px; text-autospace:ideograph-numeric;}");document.writeln(".nor{font-Size:12px; line-height:17px; letter-spacing:1px; text-autospace:ideograph-numeric; line-break:strict; }");document.writeln(".nor2{font-Size:13px; line-height:17px; letter-spacing:1px; text-autospace:ideograph-numeric; line-break:strict; }");document.writeln(".lar{font-Size:21px; line-height:24px;}");}else {// Windows NETSCAPE 6~の場合document.writeln(".sma{font-Size:11px; line-height:13px; letter-spacing:1px; text-autospace:ideograph-numeric;}");document.writeln(".nor{font-Size:12px; line-height:17px; letter-spacing:1px; }");document.writeln(".nor2{font-Size:13px; line-height:17px; letter-spacing:1px; }");document.writeln(".lar{font-Size:21px; line-height:24px;}");}}document.writeln("--></STYLE>");// ここまで本文