"; } else { echo ""; } ?> "; if (!isset($show)) { $show = "page1"; } $page = "content/" . trim($show) . ".html"; if (file_exists($page)) { $body = $page; $incflag = TRUE; } else { $page = "content/error.html"; $incflag = TRUE; if (file_exists($page)) { $body = $page; $incflag = TRUE; } else { $body = "

Unable to find the content you requested


"; $incflag = FALSE; } } define(INCLUDEFLAG,$incflag); define(PAGECONTENT,$body); define(TOP,"content/top.html"); define(MENU,"content/mainmenu.html"); function fnContent() { echo "\n"; if (INCLUDEFLAG) { include(PAGECONTENT); } else { echo PAGECONTENT; } echo "\n"; } ?>