<!-- j.script for ckBrowser -->
var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

/*  	charAt(n)	method, 0スタートの先頭の文字から数えて、n番目の文字を抜き出す。
	navigator. 	object, browserのユーザーエージェントやアプリケーション名、バージョンなど、browser固有の情報を提供するobject
	appName		property, browser名を取得
	appVersion	property, browserのversionを取得
*/


if ( bName == "M" && vNum < 4){
// if browser name の最初の文字が、Mではじまり、versionが4以下であれば

location.href="/getnewbrowser.html"};

if ( bName == "N" && vNum < 4){
// if browser name の最初の文字が、Nではじまり、versionが4以下であれば

locaton.href="/getnewbrowser.html"};

document.write("<style type='text/css'><!--");

if(navigator.appVersion.indexOf("Mac") > -1){
	if ( bName == "M"){
// MAC IE

			document.write(".e9{font-size:9px}");
			document.write(".e10{font-size:10px}");
			document.write(".e12{font-size:12px}");
			document.write(".e14{font-size:14px}");
			document.write("a{font-size:10px}");
			document.write("a:hover {font-size:10px}");
			document.write(".j9{font-size:9px}");
			document.write(".j10{font-size:10px}");
			document.write(".j12{font-size:12px}");
			document.write(".j14{font-size:14px}");
	}
	else{
		if ( vNum < 5){
// MAC NETSCAPE 4.x
			document.write(".e9{font-size:10px}");
			document.write(".e10{font-size:11px}");
			document.write(".e12{font-size:14px}");
			document.write(".e14{font-size:16px}");
			document.write(".j9{font-size:12px}");
			document.write(".j10{font-size:14px; line-height:19px; color:#606060; font-family:OSAKA}");
			document.write(".j12{font-size:15px}");
			document.write(".j14{font-size:18px}");
			document.write("a{font-size:10px}");
			document.write("a:hover {font-size:10px}");
			document.write("a.navi_j{font-size:11px; font-family:OSAKA}");
			document.write("a.navi_j:hover {font-size:11px; font-family:OSAKA}");
		}
		else{
// MAC NETSCAPE 6.x~
			document.write(".e9{font-size:9px}");
			document.write(".e10{font-size:10px}");
			document.write(".e12{font-size:12px}");
			document.write(".e14{font-size:14px}");
			document.write(".j9{font-size:9px}");
			document.write(".j10{font-size:12px; line-height:17px; font-family:OSAKA}");
			document.write(".j12{font-size:12px}");
			document.write(".j14{font-size:14px}");
		}
	}
}
else{
	if( bName == "M"){
// WIN IE
			document.write(".e9{font-size:9px; line-height:1.5}");
			document.write(".e10{font-size:10px; line-height:1.5}");
			document.write(".e12{font-size:12px; line-height:1.5}");
			document.write(".e14{font-size:14px; line-height:1.5}");
			document.write(".e16{font-size:16px; line-height:1.5}");
			document.write(".e18{font-size:18px; line-height:1.5}");
			document.write(".j9{font-size:10px; line-height:1.5}");
			document.write(".j10{font-size:11px; line-height:1.5}");
			document.write(".j12{font-size:12px; line-height:1.5; letter-spacing:1px}");
			document.write(".j14{font-size:14px line-height:1.5; letter-spacing:1px}");
			document.write("a{font-size:9px}");
			document.write("a:hover{font-size:9px}");
			document.write("a.navi{font-size:9px}");
			document.write("a.navi:hover{font-size:9px}");
			document.write("a.navi_j{font-size:9px}");
			document.write("a.navi_j:hover{font-size:9px}");
	}
	else{
		if( vNum < 5){
// WIN NETSCAPE 4.x
			document.write(".e9{font-size:11px; line-height:1.5}");
			document.write(".e10{font-size:12px; line-height:1.5}");
			document.write(".e12{font-size:14px; line-height:1.5}");

			document.write(".e14{font-size:16px; line-height:1.5}");
			document.write(".j9{font-size:11px; line-height:1.5}");
			document.write(".j10{font-size:12px; line-height:1.5; color:#606060}");
			document.write(".j12{font-size:12px; line-height:1.5}");
			document.write(".j14{font-size:15px; line-height:1.5; color:#606060}");
			document.write("a{font-size:11px}");
			document.write("a:hover{font-size:11px}");
			document.write("a.j{font-size:11px}");
			document.write("a.j:hover{font-size:11px}");
			document.write("a.navi{font-size:11px}");
			document.write("a.navi:hover{font-size:11px}");
			document.write("a.navi_j{font-size:11px}");
			document.write("a.navi_j:hover{font-size:11px}");
		}
		else{
// WIN NETSCAPE 6.x~
			document.write(".e9{font-size:9px; line-height:1.5}");
			document.write(".e10{font-size:10px; line-height:1.5}");
			document.write(".e12{font-size:12px; line-height:1.5}");
			document.write(".e14{font-size:14px; line-height:1.5}");
			document.write(".j9{font-size:10px; line-height:1.5}");
			document.write(".j10{font-size:11px; line-height:1.5}");
			document.write(".j12{font-size:12px; line-height:1.5; letter-spacing:1px}");
			document.write(".j14{font-size:14px; line-height:1.5; letter-spacing:1px}");
		}
	}
}
document.write("--></style>");