theData		= "";
theName		= "DEXUID=";
theCookie	= document.cookie+";";
start		= theCookie.indexOf(theName,0);
// Cookie³ÎÇ§
if (start != -1) {
	end1		= theCookie.indexOf(";",start);
	dex_id	= unescape(theCookie.substring(start+theName.length,end1));
	if (dex_id.match(/^\d+$/)) {
		theData		= "";
		theName		= "CP_KBN=";
		theCookie	= document.cookie+";";
		start		= theCookie.indexOf(theName,0);
		// Cookie³ÎÇ§
		if (start != -1) {
			end2	= theCookie.indexOf(";",start);
			cp_kbn	= unescape(theCookie.substring(start+theName.length,end2));
			if (cp_kbn == 1) {
				mmbflg = 1;
			} else {
				mmbflg = 2;
			}
		} else {
			mmbflg = 3;
		}
	} else {
		mmbflg = 3;
	}
} else {
	mmbflg = 3;
}

