

/* browser check */



function getBrowserName() {

	var an = navigator.appName;

	var ua = navigator.userAgent;

	if (an.indexOf("Microsoft Internet Explorer",0) != -1) return "Explorer";

	if (an.indexOf("Netscape",0) != -1) return "Netscape";

	if (an.indexOf("Opera",0) != -1) return "Opera";

	if (an.indexOf("iCab",0) != -1) return "iCab";

	if (an.indexOf("WebTV",0) != -1) return "WebTV";

	if (ua.indexOf("DreamPassport",0) != -1) return "DreamPassport";

	return "";

}



/* css setting */



var bn = getBrowserName();

var bv = navigator.appVersion.charAt(0);

var bp = navigator.platform.charAt(0);



if (bv >= 4) {

	if (bp == "W") {

		if (bn == "Explorer") {

			// Win IE 5 or above

			document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

		} else if (bn == "Netscape") {

			if (bv >= 5) {

				// Win N 6 or above

				document.write('<link rel="stylesheet" type="text/css" href="../css/n6text.css">');

			} else {

				// Win NC 4

				document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

			}

		} else {

			// other browsers

			document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

		}

	} else if(bp == "M") {

		if (bn == "Explorer") {

			var macIEversion = eval(navigator.appVersion.substring(22,23));

			if (macIEversion == 4) {

				// Mac IE 4

				document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

			} else if (macIEversion >= 5) {

				// Mac IE 5 or above

				document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

			}

		} else if (bn == "Netscape") {

			if (bv >= 5) {

				// Mac N 6 or above

				document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

			} else {

				// Mac NC 4

				document.write('<link rel="stylesheet" type="text/css" href="../css/n6text.css">');

			}

		} else {

			// other browsers

			document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

		}

	} else {

		document.write('<link rel="stylesheet" type="text/css" href="../css/text.css">');

	}

}









/* window control */



function open_genki(pNum) {

	window.open(pNum,"NHK_genki_face","width=470,height=460,directories=no,location=no,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes");

}



/* end of file */


