fileSystemRoot/presentation/Html.inc");
global $default;
$heading = "$default->graphicsUrl/heading.gif";
$hStretched = "$default->graphicsUrl/hrepeat.gif";
$row1 = "
";
//Output a title bar
echo "
\n ";
//Query the database for the helpURL based on the current action
$sQuery = "SELECT HLP.help_info as helpinfo ".
"FROM $default->owl_help_table AS HLP WHERE '$fAction' = HLP.fSection";
$sql = $default->db;
$sql->query($sQuery);
if ($sql->next_record())
{
require_once("$default->uiDirectory/help/" . $sql->f("helpinfo"));
}
else
{
echo "No help available for "."$fAction";
}
?>