<?php
require("db.inc.php");
$the_visitor = setUp();
$history = new History();
$the_history = $history->getHistoryList($the_visitor);
$the_term = getTermValue();
$the_description = '';     // assume an empty term definition
if ( $the_term != 'undefined' ) {   // then we got a term to look for

  $the_description = buildSlideDescription( $the_term, ( getCheckBoxValue() == 'Y' ), $the_visitor, $the_history );

//$the_history = get_history($the_visitor);
//$the_recent_searches = do_recent_searches($the_history);
//$the_cloud = do_cloud();
}
//echo "searching for $the_term";
echo outputTextFormatHTML( 'description', $the_description );
