// DHTML用にドキュメントの仕様を判別。
if ( document.getElementById ) { var archdt = 'a' }// IE 5.x 以降、及び NN 6.x 以降
else if ( document.all ) { var archdt = 'b' }// IE 4.x 以前
else if ( document.layers ) { var archdt = 'c' }// NN 4.x 以前

// OSの種類を判別、取得。
if ( navigator.appVersion.indexOf ( 'Win' ) != -1 ) { var archos = 'Win'; }
else if ( navigator.appVersion.indexOf ( 'Mac' ) != -1 ) { var archos = 'Mac'; }

// Browser名を取得。
var archwb = navigator.appName.charAt ( 0 );

// BrowserのVersionを取得。
var archvr = navigator.appVersion.substr ( 0, 3 );

document.open ( );
document.writeln ( '<style type="text/css">' );
document.writeln ( '<!--' );
document.writeln ( '' );
if ( archos == 'Win' ) {
	if ( archdt == 'c' ) {// Win NN 4.x 以前
		document.writeln ( '.text0 { font-size: 11px; line-height: 12px; }' );
		document.writeln ( '.text1 { font-size: 13px; line-height: 14px; }' );
		document.writeln ( '.text2 { font-size: 15px; line-height: 16px; }' );
		document.writeln ( '.text3 { font-size: 17px; line-height: 18px; }' );
		document.writeln ( '.text0b { font-weight: bold; font-size: 11px; line-height: 12px; }' );
		document.writeln ( '.text1b { font-weight: bold; font-size: 13px; line-height: 14px; }' );
		document.writeln ( '.text2b { font-weight: bold; font-size: 15px; line-height: 16px; }' );
		document.writeln ( '.text3b { font-weight: bold; font-size: 17px; line-height: 16px; }' );
	} else {// Win IE 、及び Win NN 6.x 以降
		document.writeln ( '.text0 { font-size: 10px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text1 { font-size: 12px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text2 { font-size: 14px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text3 { font-size: 16px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text0b { font-weight: bold; font-size: 10px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text1b { font-weight: bold; font-size: 12px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text2b { font-weight: bold; font-size: 14px; line-height: 1.3em; letter-spacing: 0.04em; }' );
		document.writeln ( '.text3b { font-weight: bold; font-size: 16px; line-height: 1.3em; letter-spacing: 0.04em; }' );
	}
} else if ( archos == 'Mac' ) {// Mac
	document.writeln ( '.text0 { font-size: 10px; line-height: 12px; }' );
	document.writeln ( '.text1 { font-size: 12px; line-height: 14px; }' );
	document.writeln ( '.text2 { font-size: 14px; line-height: 16px; }' );
	document.writeln ( '.text3 { font-size: 16px; line-height: 18px; }' );
	document.writeln ( '.text0b { font-weight: bold; font-size: 10px; line-height: 12px; }' );
	document.writeln ( '.text1b { font-weight: bold; font-size: 12px; line-height: 14px; }' );
	document.writeln ( '.text2b { font-weight: bold; font-size: 14px; line-height: 16px; }' );
	document.writeln ( '.text3b { font-weight: bold; font-size: 16px; line-height: 18px; }' );
}
document.writeln ( '' );
document.writeln ( '-->' );
document.writeln ( '</style>' );
document.close ( );


// ステータスメッセージの操作(destionction00.jsより)
function winsts ( MsgID ) { window.status = MsgID; return true; }
