//popupfunction openWin(wUrl , wName , Width , Height , Resize , Status , Scroll){	wOption = "toolbar=no,location=no,directories=no,status=" + Status +",menubar=no,scrollbars=" + Scroll +",resizable=" + Resize +",width=" + Width + ",height=" + Height + ",left=";	w = window.open(wUrl,wName,wOption);	w.focus();}//pagetopfunction backToTop() {    var x1 = x2 = x3 = 0;    var y1 = y2 = y3 = 0;    if (document.documentElement) {        x1 = document.documentElement.scrollLeft || 0;        y1 = document.documentElement.scrollTop || 0;    }    if (document.body) {        x2 = document.body.scrollLeft || 0;        y2 = document.body.scrollTop || 0;    }    x3 = window.scrollX || 0;    y3 = window.scrollY || 0;    var x = Math.max(x1, Math.max(x2, x3));    var y = Math.max(y1, Math.max(y2, y3));    window.scrollTo(Math.floor(x / 2), Math.floor(y / 2));    if (x > 0 || y > 0) {        window.setTimeout("backToTop()", 25);    }}//linkpic/* Globals */var arc90_navigator = navigator.userAgent.toLowerCase();var arc90_isOpera = arc90_navigator.indexOf('opera') >= 0? true: false;var arc90_isIE = arc90_navigator.indexOf('msie') >= 0 && !arc90_isOpera? true: false;var arc90_isSafari = arc90_navigator.indexOf('safari') >= 0 || arc90_navigator.indexOf('khtml') >= 0? true: false;var arc90_linkThumbUseClassName = true;var arc90_linksources = [['http://images.websnapr.com/?url=', 202, 152],						  ['http://thumbnails.alexa.com/image_server.cgi?size=small&url=', 160, 120],						  ['http://msnsearch.srv.girafa.com/srv/i?s=MSNSEARCH&r=', 160, 120]];var arc90_linksource = 0;function arc90_linkpic() {	var b = document.domain;	var A = document.getElementsByTagName('A');	for (var i = 0, l = A.length, c = 0; i < l; i++) {		var a = A[i];		var h = a.href;		if ((b == '' || h.indexOf(b) < 0) && h.indexOf('://') > 0 && ((arc90_linkThumbUseClassName && a.className.indexOf('linkthumb') >= 0) || !arc90_linkThumbUseClassName)) {			try {				a.className += ' arc90_linkpicLNK';				if (a.id == '')					a.id = 'arc90_link'+ i;				var d = arc90_newNode('div', 'arc90_linkpic'+ i, 'arc90_linkpic');				var m = arc90_newNode('img', '', 'arc90_linkpicIMG');				var n = h.replace(/[^:]*:\/\/([^:\/]*)(:{0,1}\/{1}.*)/, '$1');				m.src = arc90_linksources[arc90_linksource][0] + n;				m.width = arc90_linksources[arc90_linksource][1];				m.height = arc90_linksources[arc90_linksource][2];				m.style.width = arc90_linksources[arc90_linksource][1] +'px';				m.style.height = arc90_linksources[arc90_linksource][2] +'px';				m.border = 0;				m.alt = '[Picture of '+ n +']';				m.title = a.title;				d.style.zIndex = '9999';				d.style.position = 'absolute';				d.appendChild(m);				document.body.appendChild(d);				arc90_addEvent(a, 'mouseover',	function () { arc90_showThumb(arc90_isIE? event.srcElement.id: this.id); } );				arc90_addEvent(a, 'mouseout',	function () { arc90_hideThumb(arc90_isIE? event.srcElement.id: this.id); } );			} catch(err) {				a = null;			}		}	}}function arc90_showThumb(id) {	try {		var k = document.getElementById(id);		var top = arc90_findDimension(k, 'Top');		var lnh = arc90_getStyle(k, 'lineHeight', 'font-size');		var default_height = 20;		if (!lnh)			lnh = default_height;		else if (lnh.indexOf('pt') > 0)			lnh = parseInt(lnh) * 1.3;		else if (lnh.indexOf('em') > 0)			lnh = parseInt(lnh) * 10;		else if (lnh.indexOf('px') > 0)			lnh = parseInt(lnh);		else if (arc90_isNumeric(lnh))			lnh = parseInt(arc90_isIE? lnh * 10: arc90_isOpera? lnh/100: lnh); // IE brings back em units		else			lnh = default_height;		var lft = arc90_findDimension(k, 'Left');		var nlf = arc90_findMatchingDimensionViaNodes(k, 'Left', lft, 0);		var pid = id.replace(/arc90_link/, 'arc90_linkpic');		var p = document.getElementById(pid);		p.style.display = 'block';		p.style.top = (top + (arc90_isIE && nlf? lnh + 8: 4) + lnh) + 'px';		p.style.left = lft + 'px';	} catch(err) { return; }}function arc90_hideThumb(id) {	try {		var k = document.getElementById(id);		var pid = id.replace(/arc90_link/, 'arc90_linkpic');		var p = document.getElementById(pid);		p.style.display = 'none';	} catch(err) { return; }}function arc90_getStyle(obj, styleIE, styleMoz) {	if (arc90_isString(obj)) obj = document.getElementById(obj);	if (obj.currentStyle)		return obj.currentStyle[styleIE];	else if (window.getComputedStyle)		return document.defaultView.getComputedStyle(obj, null).getPropertyValue(styleMoz);}function arc90_findDimension(obj, pType) {	if (arc90_isString(obj)) obj = document.getElementById(obj);	var cur = 0;	if(obj.offsetParent)		while(obj.offsetParent) {			switch(pType.toLowerCase()) {			case "width":				cur += obj.offsetWidth; break;			case "height":				cur += obj.offsetHeight; break;			case "top":				cur += obj.offsetTop; break;			case "left":				cur += obj.offsetLeft; break;			}			obj = obj.offsetParent;		}	return cur;}function arc90_findMatchingDimensionViaNodes(obj, pType, matching, notMatching) {	var cur = 0, counter = 0;	notMatching = notMatching == null? -1: notMatching;	if(obj.parentNode)		while(obj.parentNode) {			cur = arc90_findDimension(obj, pType);			if (cur == matching && cur != notMatching)				counter++;			if (counter >= 2) return true;			obj = obj.parentNode;		}	return false;}/* Events */function arc90_isString(o) { return (typeof(o) == "string"); }function arc90_isNumeric(o) { return (typeof(parseFloat(o).toString() == 'NaN'? 'xxx': parseFloat(o)) == "number" && parseFloat(o) != ''); }function arc90_addEvent(e, meth, func, cap) {	if (arc90_isString(e))	e = document.getElementById(e);	if (e.addEventListener){		e.addEventListener(meth, func, cap);    	return true;	}	else if (e.attachEvent)		return e.attachEvent("on"+ meth, func);	return false;}/* Nodes */function arc90_newNode(t, i, s, x, c) {	var node = document.createElement(t);	if (x != null && x != '') {		var n = document.createTextNode(x);		node.appendChild(n);	}	if (i != null && i != '')		node.id = i;	if (s != null && s != '')		node.className = s;	if (c != null && c != '')		node.appendChild(c);	return node;}/* Onload */arc90_addEvent(window, 'load', arc90_linkpic);/* Menu */function MM_jumpMenu(targ,selObj,restore){ //v3.0eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");if (restore) selObj.selectedIndex=0;}// mt-site.js// Copyright (c) 1996-1997 Athenia Associates.// http://www.webreference.com/js/// License is granted if and only if this entire// copyright notice is included. By Tomer Shiran.function setCookie (name, value, expires, path, domain, secure) {    var curCookie = name + "=" + escape(value) + (expires ? "; expires=" + expires : "") +        (path ? "; path=" + path : "") + (domain ? "; domain=" + domain : "") + (secure ? "secure" : "");    document.cookie = curCookie;}function getCookie (name) {    var prefix = name + '=';    var c = document.cookie;    var nullstring = '';    var cookieStartIndex = c.indexOf(prefix);    if (cookieStartIndex == -1)        return nullstring;    var cookieEndIndex = c.indexOf(";", cookieStartIndex + prefix.length);    if (cookieEndIndex == -1)        cookieEndIndex = c.length;    return unescape(c.substring(cookieStartIndex + prefix.length, cookieEndIndex));}function deleteCookie (name, path, domain) {    if (getCookie(name))        document.cookie = name + "=" + ((path) ? "; path=" + path : "") +            ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT";}function fixDate (date) {    var base = new Date(0);    var skew = base.getTime();    if (skew > 0)        date.setTime(date.getTime() - skew);}function rememberMe (f) {    var now = new Date();    fixDate(now);    now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);    now = now.toGMTString();    if (f.author != undefined)       setCookie('mtcmtauth', f.author.value, now, '/', '', '');    if (f.email != undefined)       setCookie('mtcmtmail', f.email.value, now, '/', '', '');    if (f.url != undefined)       setCookie('mtcmthome', f.url.value, now, '/', '', '');}function forgetMe (f) {    deleteCookie('mtcmtmail', '/', '');    deleteCookie('mtcmthome', '/', '');    deleteCookie('mtcmtauth', '/', '');    f.email.value = '';    f.author.value = '';    f.url.value = '';}function hideDocumentElement(id) {    var el = document.getElementById(id);    if (el) el.style.display = 'none';}function showDocumentElement(id) {    var el = document.getElementById(id);    if (el) el.style.display = 'block';}var commenter_name;function individualArchivesOnLoad(commenter_name) { // comments are allowed but not required    if (commenter_name) {        hideDocumentElement('name-email');    } else {        showDocumentElement('name-email');    }    if (document.comments_form) {        if (!commenter_name && (document.comments_form.email != undefined) &&            (mtcmtmail = getCookie("mtcmtmail")))            document.comments_form.email.value = mtcmtmail;        if (!commenter_name && (document.comments_form.author != undefined) &&            (mtcmtauth = getCookie("mtcmtauth")))            document.comments_form.author.value = mtcmtauth;        if (document.comments_form.url != undefined &&             (mtcmthome = getCookie("mtcmthome")))            document.comments_form.url.value = mtcmthome;        if (document.comments_form["bakecookie"]) {            if (mtcmtauth || mtcmthome) {                document.comments_form.bakecookie.checked = true;            } else {                document.comments_form.bakecookie.checked = false;            }        }    }}function writeTypeKeyGreeting(commenter_name, entry_id) {    if (commenter_name) {        document.write('<p>サインインを受け付けました。 ' + commenter_name +          'さん。コメントができます。'+          '(<a href="http://www.solahoop.com/cgi/mt/mt-comments.cgi?__mode=handle_sign_in&amp;static=1&amp;logout=1&entry_id=' + entry_id + '">サイン・アウト</a>)</p>');    } else {        document.write('<p>TypeKey IDを使って '+          '<a href="https://www.typekey.com/t/typekey/login?&amp;lang=ja&amp;t=JSh3kYMLNhv1wm5mnm9V&amp;v=1.1&amp;_return=http://www.solahoop.com/cgi/mt/mt-comments.cgi%3f__mode=handle_sign_in%26static=1%26entry_id=' + entry_id + '">サインイン</a> '+          'してください。</p>');    }}if ('www.solahoop.com' != 'www.solahoop.com') {    document.write('<script src="http://www.solahoop.com/cgi/mt/mt-comments.cgi?__mode=cmtr_name_js"></script>');} else {    commenter_name = getCookie('commenter_name');}