<!--                    
                    
theName = "aDay=";                    
theCookie = document.cookie+";"                    
start = theCookie.indexOf(theName);                    
if (start != -1)                    
{                    
	end = theCookie.indexOf(";",start);                    
	aDay= unescape(theCookie.substring(start+theName.length,end));                    
	document.write(aDay+"以来で〜す！");                    
}                    
// -->