∴Cookieを使用可能か表示する
 ∴サンプル
 ∴タグ
<SCRIPT language="JavaScript">
<!--
function ok(){
if(navigator["cookieEnabled"]){return (navigator.cookieEnabled)}
else{document.cookie="co";return (document.cookie.indexOf("co")!=-1)}
}
if(ok){document.write("Cookieは使えます")}
else{document.write("Cookieは使えません")}
//-->
</SCRIPT>
 ∴変更をするところ
Cookieは使えますCookieが使用可能なとき表示される言葉を記入
Cookieは使えませんCookieが使用不可能なときに表示される言葉を記入
 ∴その他の詳細
特になし