*  $primaryKeyFieldName : The primary key field name for the dataList entries
 */
// First load the common Template Tools object
// This object handles the common display of our form items and
// text formmatting tools.
$fileName = 'objects/TemplateTools.php';
$path = Page::findPathExtension($fileName);
require_once $path . $fileName;
$templateTools = new TemplateTools();
//Load the Keys for the XML based Form Item Objects
$formItemName = XMLObject_FormItem::XML_ELEMENT_NAME;
$formItemValue = XMLObject_FormItem::XML_ELEMENT_VALUE;
$formItemError = XMLObject_FormItem::XML_ELEMENT_ERROR;
// Initialize the row color
$rowColor = "";
$templateTools->swapBGColor($rowColor);
// load the page labels
$templateTools->loadPageLabels($pageLabels);
$textStyle = 'text';
?>
<p><span class="heading"><?php 
echo $templateTools->getPageLabel('[Title]');
?>
</span></p>
<p><span class="text"><?php 
echo $templateTools->getPageLabel('[Instr]');
?>
</span></p>
<hr>
<form name="Form" id="Form" method="post" action="<?php 
echo $formAction;