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_test()
{
	document.write('&nbsp;');
}

function LogInOutGif()
{
	var checkname =	getCookie('DIGEST');

	if (checkname == null)
	{
		document.write(
		"<map name=\"LoginMap\" id=\"LoginMap\">"
		+ "<area href=\"http://member.realguns.com/zmail.asp\""
		+ " shape=\"rect\" coords=\"151, 2, 256, 24\" />"
		+ "<area href=\"http://sub.realguns.com/cgi-bin/login\""
		+ " shape=\"rect\" coords=\"188, 59, 253, 75\" />"
		+ "</map>"
		+ "<img border=\"0\""
		+ " src=\"http://www.realguns.com/images/checkmail1.jpg\""
		+ " width=\"259\" height=\"76\" usemap=\"#LoginMap\" />"
		);
	}
	else if (checkname == 'EATME')
	{
		document.write(
		"<map name=\"LoginMap\" id=\"LoginMap\">"
		+ "<area href=\"http://member.realguns.com/zmail.asp\""
		+ " shape=\"rect\" coords=\"151, 2, 256, 24\" />"
		+ "<area href=\"http://sub.realguns.com/cgi-bin/login\""
		+ " shape=\"rect\" coords=\"188, 59, 253, 75\" />"
		+ "</map>"
		+ "<img border=\"0\""
		+ " src=\"http://www.realguns.com/images/checkmail1.jpg\""
		+ " width=\"259\" height=\"76\" usemap=\"#LoginMap\" />"
		);
	}
	else
	{
		document.write(
		"<map name=\"LoginMap\" id=\"LoginMap\">"
		+ "<area href=\"http://member.realguns.com/zmail.asp\""
		+ " shape=\"rect\" coords=\"151, 2, 256, 24\" />"
		+ "<area href=\"http://sub.realguns.com/cgi-bin/logout\""
		+ " shape=\"rect\" coords=\"188, 59, 253, 75\" />"
		+ "</map>"
		+ "<img border=\"0\""
		+ " src=\"http://www.realguns.com/images/checkmail1b.jpg\""
		+ " width=\"259\" height=\"76\" usemap=\"#LoginMap\" />"
		);
	}
}

function LogInOutGif_oldwithgraphic()
{
	var checkname =	getCookie('DIGEST');

	if (checkname == null)
	{
		document.write("<map name=Loginmap>\n"
		+ "<area href=https://sub.realguns.com shape=rect"
		+ " coords=\"73, 15, 255, 67\">"
		+ "<area href=https://sub.realguns.com shape=rect"
		+ " coords=\"73, 64, 101, 94\">"
		+ "<area href=http://sub.realguns.com/cgi-bin/login"
		+ " shape=rect coords=\"199, 90, 254, 101\">"
		+ "<img border=0 src=/images/logo_login.gif"
		+ " usemap=#Loginmap width=256 height=105></a></map>");
	}
	else if (checkname == 'EATME')
	{
		document.write("<map name=Loginmap>\n"
		+ "<area href=https://sub.realguns.com shape=rect"
		+ " coords=\"73, 15, 255, 67\">"
		+ "<area href=https://sub.realguns.com shape=rect"
		+ " coords=\"73, 64, 101, 94\">"
		+ "<area href=http://sub.realguns.com/cgi-bin/login"
		+ " shape=rect coords=\"199, 90, 254, 101\">"
		+ "<img border=0 src=/images/logo_login.gif"
		+ " usemap=#Loginmap width=256 height=105></a></map>");
	}
	else
	{
		document.write("<map name=Loginmap>\n"
		+ "<area href=https://sub.realguns.com shape=rect"
		+ " coords=\"73, 15, 255, 67\">"
		+ "<area href=https://sub.realguns.com shape=rect"
		+ " coords=\"73, 64, 101, 94\">"
		+ "<area href=http://sub.realguns.com/cgi-bin/logout"
		+ " shape=rect coords=\"199, 90, 254, 101\">"
		+ "<img border=0 src=/images/logo_logout.gif"
		+ " usemap=#Loginmap width=256 height=105></a></map>");
	}
}
