 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 portal_login(){
	Cookievalue = GetCookie('mlogin_cookie');
        var Cookie_idname = new Array();
        Cookie_idname = Cookievalue.split("|");
        var urls = location.host + location.pathname + location.search;
        urls=urls.replace(/&/g, "%26");
        if(Cookievalue != ""){
	document.write("<td width=\"62\"><a href='https://login.hankooki.com/logout.php?mode=logout&home=www.hankooki.com&path=0610&url=www.hankooki.com'><img src=\"http://img.hankooki.com/portal/2007/12/btn_logout.gif\" border=\"0\"></a></td>");
	document.write("<td width=\"58\"><a href='https://login.hankooki.com/edit_member.php?path=0610&home=www.hankooki.com&url="+urls+"'><img src=\"http://img.hankooki.com/portal/2007/12/btn_join_2.gif\" border=\"0\"></a></td>");
        }else{
	document.write("<td width=\"62\"><a href='https://login.hankooki.com/login.php?path=0610&home=www.hankooki.com&url="+urls+"'><img src=\"http://img.hankooki.com/portal/2007/12/btn_login.gif\" border=\"0\"></a></td>");
	document.write("<td width=\"58\"><a href='https://login.hankooki.com/agree.php?path=0610&url="+urls+"'><img src=\"http://img.hankooki.com/portal/2007/12/btn_join_1.gif\" border=\"0\"></a></td>");
        }
}

