	//クッキーを取得
	var intCookieIndex = document.cookie.indexOf("isp=excite", 0);

	//表示切替。
	var strEntryText;

	if(intCookieIndex < 0)
	{
		// 正会員の場合、入会ボタンを表示
		strEntryText = '会員登録をすれば、全編高画質・大画面でご覧頂けます！<br><a href="http://www.momo-d.jp/entry/entry.php"><img src="images/button_toroku01.gif" name="button_toroku01" width="150" height="25" border="0" vspace="5"></a>';
	}
	else
	{
		// eXcite!会員の場合、入会ボタンを非表示
		strEntryText = '';
	}

