<?php include_once("common/util.inc"); ?>

<?php 
#16Aug07 MS
#THIS FIXED YOUR PROBLEM
# You need to use $_GET['keyname'] 

if (isset($_GET["key"])) {$key = $_GET["key"];} 
 else {$key="skinny";}

if (isset($_GET["debug"])) {$debug = $_GET["debug"];}
 else {$debug="off";}

 MakeRootPage(
  "Home Page of John W. Fisher III",
  "header.html",
  $key,$debug);
 ?>

<?php include("footer.html"); ?>
