<!-- 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(".text_e{font-size:12px}");
			document.write(".products{font-size:11px}");
			document.write(".text{font-size:11px}");
			document.write(".aux{font-size:11px; letter-spacing: 0.2em}");
	}
	else{
		if ( vNum < 5){
// MAC NETSCAPE 4.x

			document.write(".text_e{font-size:16px; font-family:Verdana, Arial, Helvetica, sans-serif}");
			document.write(".products{font-size:12px; line-height:14px; color:#606060; font-family:OSAKA}");
			document.write(".text{font-size:12px; line-height:14px; color:#606060; font-family:OSAKA}");
			document.write(".aux{font-size:12px; line-height:14px; letter-spacing: 0.2em}");
		}
		else{
// MAC NETSCAPE 6.x~
			document.write(".text_e{font-size:12px}");
			document.write(".products{font-size:12px; line-height:17px; font-family:OSAKA}");
			document.write(".text{font-size:12px; line-height:17px; font-family:OSAKA}");
			document.write(".aux{font-size:12px; line-height:14px; letter-spacing: 0.2em}");
		}
	}
}
else{
	if( bName == "M"){
// WIN IE
			document.write(".text_e{font-size:12px; line-height:1.5}");
			document.write(".products{font-size:12px; line-height:1.5}");
			document.write(".text{font-size:11px; line-height:13px}");
			document.write(".aux{font-size:11px; line-height:13px; letter-spacing: 0.2em}");
	}
	else{
		if( vNum < 5){
// WIN NETSCAPE 4.x
			document.write(".text_e{font-size:14px; line-height:16px}");
			document.write(".products{font-size:14px; line-height:16px}");
			document.write(".text{font-size:12px; line-height:14px; color:#606060}");
			document.write(".aux{font-size:12px; line-height:14px; letter-spacing: 0.2em}");
		}
		else{
// WIN NETSCAPE 6.x~
			document.write(".text_e{font-size:12px; line-height:1.5}");
			document.write(".products{font-size:12px; line-height:1.5}");
			document.write(".text{font-size:11px; line-height:13px}");
			document.write(".aux{font-size:11px; line-height:13px; letter-spacing: 0.2em}");
		}
	}
}
document.write("--></style>");