참고주소는 http://giveroflife.org 입니다.

index.php 는 주소창에 도메인이름만 보이게 하기위해 프레임을 다음과 같이 나눴습니다.

<html>
<head>
<title>말씀의 교회 </title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<frameset rows="0%,100%" framespacing=0 frameborder=0>
 <frame src="blank_top_new.html" frameborder=0 marginwidth=0 marginheight=0 scrolling=no>
 <frame src="body.php" frameborder=0 marginwidth=0 marginheight=0 scrolling=yes>
</frameset>
</html>

문제: 로그인이 되어있는 상태에서 새로고침을 하거나 해서 giveroflife.org로 접속을 하게 될 경우
첫화면인 body.php 에 연결되어있는 외부로그인은 로그아웃이 된 상태로 보입니다. 하지만
바로 다른 페이지들로 가보면 로그인이 되어있는 상태로 뜹니다. 실제는 로그인이 되어있는 상태인데
도메인으로 다시 접속을 하면 첫화면인 body.php가 외부로그인에 로그아웃 된 상태로 보이고 있는데요

giveroflife.org/body.php 만 입력해서 접속해도 역시 로그아웃 상태로 나오는걸 보면 프레임문제만은 아닐것 같은데
어떻게 해야 이 문제를 해결할 수 있을까요?

미리 감사드립니다.