<?php
  
//set local paths and other settings
  
require "/local/php/ismsite/harvesting/local.inc.php";
    
//include the harvestpage class
  
require "$inc/harvestpage.inc";
  
$thisHarvestPage = new harvestPage();
    
    
//change the title (MANDITORY!!)
  
$thisHarvestPage->pagetitle="";
    
//add keywords for important "node" pages
    
$thisHarvestPage->keywords="";
    
//add a description for display by search engines (optional)
  
$thisHarvestPage->description="";
    
//subjects for site-wide dynamic subject index (optional)
    
$thisHarvestPage->ISMsubject="";
  
$thisHarvestPage->setTopic(); //called to set topic based on url of file
  
$thisHarvestPage->displayHead();
  
$thisHarvestPage->displayBody($topic);

//The following area is for the content of the page
?> 

Here is the area for the body of interpretive text.


<?php 
//The end of the content area. Nothing should be changed below this.
  
$thisHarvestPage->bodyEndContent();
  require 
"$inc/textmenu.php";
  
$thisHarvestPage->bodyBeginNavCell();
  
  
$thisHarvestPage->showComment("Start my".$thisHarvestPage->topic."menu.php");
  require 
"$inc/my".$thisHarvestPage->topic."menu.php";
  
$thisHarvestPage->showComment("End my".$thisHarvestPage->topic."menu.php");

  
$thisHarvestPage->bodyEndNavCell ();
  
$thisHarvestPage->endBody();
?>