<!--

var tmp0 = CookieRead("gpass");
var tmp1 = tmp0.split(">");
var tmp2 = tmp1[0].split("<");
gname = tmp2[1];

if(tmp0 == "") {


document.write('<TABLE  cellspacing="1" cellpadding="3" width="135" bgcolor="#55558D"><TBODY>');
document.write('<TR><TD bgcolor="#DDDDEE"><FONT color="#444488"><B>緑ネームログイン</B></FONT></TD></TR>');

document.write('<TR><TD bgcolor="#ffffff" >');

document.write('<div class="menu_oidlink"><a href="/auth/login.cgi?oid=yahoo" target="_self"><img src="http://i.yimg.jp/images/login/btn/Ymark.gif" width="27" height="13" alt="Yahoo! JAPAN" border="0" style="vertical-align:middle;margin-right:3px;">Yahoo!でログイン</a></div>');
document.write('<div class="menu_oidlink"><a href="/auth/login.cgi?oid=google" target="_self"><img src="/auth/img/google.jpg" width="16" height="16"alt="Googleアカウントでログイン" border="0"> Googleでログイン</a></div>');
document.write('<div class="menu_oidlink"><a href="/auth/login.cgi?oid=livedoor" target="_self"><img src="/auth/img/16_16.gif" alt="livedoor IDでログイン" width="16" height="16" title="livedoor IDでログイン" border="0"> livedoorでログイン</dd></a></div>');
document.write('<div class="menu_oidlink"><a href="/auth/login.cgi?oid=excite" target="_self"><img src="/auth/img/login_btn_30_02.gif" width="16" height="16"alt="エキサイト IDでログイン" border="0"> エキサイトでログイン</a></div>');
document.write('<div class="menu_oidlink"><a href="/auth/uomin.php" target="_self"><img src="/auth/img/uomin.jpg" width="24" height="24" border="0" alt="うおみんでログイン" style="vertical-align:middle;margin-right:3px;"> うおみんでログイン</a></div>');

document.write('<div class="menu_oidlink">[ <a href="/auth/" target="_self">新規登録はこちら</a> ]</div>');

document.write('</TD></TR></TBODY></TABLE><BR>');

}else {


document.write('<TABLE  cellspacing="1" cellpadding="3" width="135" bgcolor="#55558D"><TBODY>');
document.write('<TR><TD bgcolor="#DDDDEE"><FONT color="#444488"><B>緑ネームログイン</B></FONT></TD></TR>');
document.write('<TR><TD  bgcolor="#ffffff"><div class="menu_oidlink"><span class="menu_pass">こんにちは </span><BR>');
document.write('<p class="menu_d_gname"><SPAN class="menu_gname">' + gname + '</SPAN> さん</p>');
document.write('<p class="menu_d_gname"><b><a href="/auth/userinfo.php"target="_self">緑ネーム登録情報</a></b></p>');
document.write('<span class="menu_pass">[ <a href="/auth/logout.cgi"target="_self">ログアウト</a> ]</SPAN></div></TD></TR>');

document.write('</TBODY></TABLE><BR>');

}


function CookieRead(kword)
{
  if(typeof(kword) == "undefined")
    return "";
  kword = kword + "=";
  kdata = "";
  scookie = document.cookie + ";";
  start = scookie.indexOf(kword);
  if (start != -1){
    end = scookie.indexOf(";", start);
    kdata = decodeURIComponent(scookie.substring(start + kword.length, end));
  }
  return kdata;
}

// -->

