function getCookie(NameOfCookie)
{
   if(document.cookie.length > 0)
  {
     begin = document.cookie.indexOf(NameOfCookie+"=");
     if(begin != -1)
     {
        // our cookie was set.
        // The value stored in the cookie is returned from the function
        begin += NameOfCookie.length + 1;
        end = document.cookie.indexOf(";",begin);
        if(end == -1) end = document.cookie.length;
        return unescape(document.cookie.substring(begin,end));
     }
  }
  return null;
  // Our cookie was not set.
  // The value "null" is returned from the function
}

function LogInOutGif()
{
	var checkname =	getCookie('DIGEST');
	if (checkname == null)
	{
		document.write("<a href=https://secure.rginews.com/cgi-bin/"
		+ "login target=_top><img border=0"
		+ " src=/images/masthead_rightcorner_login.gif"
		+ " width=143 height=45></a>");
	}
	else if (checkname == 'EATME')
	{
		document.write("<a href=https://secure.rginews.com/cgi-bin/"
		+ "login target=_top><img border=0"
		+ " src=/images/masthead_rightcorner_login.gif"
		+ " width=143 height=45></a>");
	}
	else
	{
		document.write("<a href=https://secure.rginews.com/cgi-bin/"
		+ "logout target=_top><img border=0"
		+ " src=/images/masthead_rightcorner_logout.gif"
		+ " width=143 height=45></a>");
	}
}

