QUOTE(Trippin7464 @ Jan 15 2009, 06:21 AM)

You're probably better off asking the creators of the script. If they have a forum, or some way of contacting them it would be the best way (since they made it). If not contact me and i'll see if I can help. Probably just have to find their auth code and put it on the page you want. (but depending on how many files there are it could be quite the task searching for it).
I worked it out
xxxxxx is content for logged in
yyyyyy is content for logged out
CODE
<?
include("include/session.php")
?>
<?
if($session->logged_in){
?>
xxxxxxxx
<?
}
else{
?>
yyyyyyyy
JDEN