function getOSType() {	var uAgent = navigator.userAgent.toUpperCase();	if (uAgent.indexOf("MAC") >= 0) return "MacOS";	if (uAgent.indexOf("WIN") >= 0) return "Windows";	if (uAgent.indexOf("X11") >= 0) return "UNIX";	return "";}function getBrowserName() {	var aName = navigator.appName.toUpperCase();	if (aName.indexOf("NETSCAPE") >= 0)  return "Netscape";	if (aName.indexOf("MICROSOFT") >= 0) return "Explorer";	return "";}function getBrowserVersion() {	str = navigator.appName.toUpperCase();	version = 0;	appVer = navigator.appVersion;	if (str.indexOf("NETSCAPE") >= 0) {		s = appVer.indexOf(" ",0);		version = eval(appVer.substring(0,s));		if (version >= 5) version++;	}	if (str.indexOf("MICROSOFT") >= 0) {		appVer = navigator.userAgent;		s = appVer.indexOf("MSIE ",0) + 5;		e = appVer.indexOf(";",s);		version = eval(appVer.substring(s,e));	}	return version;}os = getOSType();browser = getBrowserName();version = getBrowserVersion();if ((os=="Windows") && (browser=="Explorer")) {	document.write("<link rel='stylesheet' type='text/css' href='http://0-1-2.org/includes/style_win_ie.css' media='all' />");}function OpenComments (c) {	window.open(c,'comments','width=480,height=480,scrollbars=yes,resizable=yes,status=yes');}function OpenTrackback (c) {	window.open(c,'trackback','width=480,height=480,scrollbars=yes,resizable=yes,status=yes');}function showMore(varA1, varB1){	var123 = ('varXYZ' + (varA1));	varABC = ('varP' + (varA1));	if( document.getElementById ) {		if( document.getElementById(var123).style.display ) {			if( varB1 != 0 ) {				document.getElementById(var123).style.display = "block";				document.getElementById(varABC).style.display = "none";			} else {				document.getElementById(var123).style.display = "none";				document.getElementById(varABC).style.display = "block";			}		} else {			location.href = varB1;			return true;		}	} else {		location.href = varB1;		return true;	}}function openSubwin(nm,fig,wd,ht,attr,type) {	if(attr=='on') open(nm,'subwin'+fig,'scrollbars,resizable,width='+wd+',height='+ht);	if(attr=='off') {		if(type=='page') open(nm,'subwin'+fig,'width='+wd+',height='+ht);		if(type=='img') {			if(document.layers) {				subWin = open('','subwin'+fig,'width='+wd+',height='+ht);				subWin.document.open();				subWin.document.write("<html>\n");				subWin.document.write("<head>\n");				subWin.document.write("<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>\n");				subWin.document.write("</head>\n");				subWin.document.write("<body marginwidth='0' marginheight='0'>\n");				subWin.document.write("<img src='" +nm+ "'>\n");				subWin.document.write("</body>\n");				subWin.document.write("</html>\n");				subWin.document.close();			}			else {				subWin = open('','subwin'+fig,'width='+wd+',height='+ht);				subWin.document.open();				subWin.document.write("<html>\n");				subWin.document.write("<head>\n");				subWin.document.write("<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>\n");				subWin.document.write("<style type='text/css'><!--\n");				subWin.document.write("body { margin: 0px; line-height: 1px; }\n");				subWin.document.write("--></style>\n");				subWin.document.write("</head>\n");				subWin.document.write("<body>\n");				subWin.document.write("<img src='" +nm+ "'>\n");				subWin.document.write("</body>\n");				subWin.document.write("</html>\n");				subWin.document.close();			}		}	}}