echo " <a href=\"{$action->action}\" class=\"input_action\" title=\"" . t($action->title) . "\"><img src=\"{$action->icon}\" alt=\"" . t($action->title) . "\"/></a>";
                }
            }
        }
        echo "<br/>\n";
    } else {
        echo "<input type=\"hidden\" name=\"{$field}\" id=\"{$field}\" value=\"" . htmlspecialchars($Properties->value) . "\" {$input_parameters}/>";
    }
    if ($Properties->dependent) {
        echo "</div>\n";
    }
}
echo "</p>\n</form>\n";
if ($Vars->after_text) {
    echo "<p>" . t($Vars->after_text) . "</p>\n";
}
if (!empty($__general_actions)) {
    echo HelperPattern::CreateFormActionList($__general_actions, $__form_id);
}
?>

<?php 
if (count($__dependents)) {
    ?>
  <script type="text/javascript">
  <?php 
    echo "update" . str_replace(' ', '', ucwords(str_replace('_', ' ', $__form_id))) . "Dependents();";
    ?>
  </script>
<?php 
}