 function GetCookie(NameCookie) {
        var i = document.cookie.indexOf(NameCookie + '=' );
	if (i != -1) { 
		i += NameCookie.length + 1;
		NameEnd = document.cookie.indexOf(';', i); 
		if (NameEnd == -1) {
		  	NameEnd = document.cookie.length;
		}		
		return  unescape(document.cookie.substring(i, NameEnd));		
  	} else {
  	 	 return ""  	
  	}	
 }
 
 function dailysports_login() {
        Cookievalue = GetCookie('mlogin_cookie');         
	var Cookie_idname = new Array();
        Cookie_idname = Cookievalue.split("|");
        var urls = location.host + location.pathname + location.search;                
        if(Cookievalue != ""){
	  document.write("<a href='http://member.hankooki.com/member/logout.php?mode=logout&path=0632&url=sports.hankooki.com/dailysports.htm'><font style=font-size:11px;font-family:µ¸¿ò color=black>·Î±×¾Æ¿ô</font></a>");
	  document.write("|");
	  document.write("<a href='http://member.hankooki.com/member/modify.php?path=0632&home=sports.hankooki.com/dailysports.htm&url="+urls+"'><font style=font-size:11px;font-family:µ¸¿ò color=black>Á¤º¸¼öÁ¤</font></a>");
        } else {           
	  document.write("<a href='http://member.hankooki.com/member/login.php?path=0632&home=sports.hankooki.com/dailysports.htm&url="+urls+"'><font style=font-size:11px;font-family:µ¸¿ò color=black>·Î±×ÀÎ</font></a>");
	  document.write("|");
	  document.write("<a href='http://member.hankooki.com/member/agree.php?path=0632&url="+urls+"'><font style=font-size:11px;font-family:µ¸¿ò color=black>È¸¿ø°¡ÀÔ</font></a>");
	}      
 }

