function weaverx_form_note($value)
{
    ?>
	<tr>
	<th scope="row" align="right">&nbsp;</th>
		<td style="float:right;font-weight:bold;"><?php 
    weaverx_echo_name($value);
    ?>
&nbsp;
<?php 
    weaverx_form_help($value);
    ?>
		</td>
<?php 
    weaverx_form_info($value);
    ?>
	</tr>
<?php 
}
function weaverx_form_header_area($value)
{
    ?>
	<tr><td>&nbsp;</td></tr>
	<tr class="atw-row-subheader-area" >
	<th scope="row" align="left" style="width:200px;line-height:2em;"><?php 
    /* NO SAPI SETTING */
    if (isset($value['id'])) {
        $icon = $value['id'];
    }
    if (!isset($icon) || !$icon) {
        $icon = ' ';
    }
    $dash = '';
    if ($icon[0] == '-') {
        // add a leading icon
        $dash = '<span style="padding:.2em;" class="dashicons dashicons-' . substr($icon, 1) . '"></span>';
    }
    echo weaverx_anchor($value['name']) . $dash . '<span style="color:blue; font-weight:bold;padding-left:5px;font-size:small;"><em>' . $value['name'] . '</em></span>';
    weaverx_form_help($value);
    ?>
	</th>
	<td style="width:170px;">&nbsp;</td>
<?php 
    if ($value['info'] != '') {
        echo '<td style="padding-left: 10px;color:blue;">';
        echo $value['info'];
        echo "</td>\n";
    }
    ?>
	</tr>
<?php 
}