<?

include("./header.inc.php3");

if ($modus == "checkentry")
  {
  if (($lastname == "") OR ($firstname == "") OR ($zip == "") OR ($city == "") OR ($country == "") OR ($email == "")) { $incomplete = "yes"; $modus = "entryform"; }
  else {include("./checkentry.inc.php3");}
  }

if ($modus == "addentry") {include("./addentry.inc.php3");}
if ($modus == "entryform") {include("./form.inc.php3");}

if (!$modus) {include("./list.inc.php3");}

include("./footer.inc.php3");

?>