/** * handleを返す。なければ”ゲスト”を返す。 */ function writeHandleName() { return "ゲスト"; } /** * Cookieが存在するかを(handleName.length() > 0)で判定 */ function wasHandleName() { return false; } /** * ユーザーIDを返す */ function getUserid() { return ""; } /** * 時間表示 */ function clock() { ct = new Date(); return ct.getFullYear() + "年" + (ct.getMonth() + 1) + "月" + ct.getDate() + "日" + ct.getHours() + "時" + ct.getMinutes() + "分"; }