}
unset($rsAssembly, $num_rows);
?>
									</select></td>
                    <td colspan="2">&nbsp;</td>
                </tr>
                <tr>
                	<td align="left">Polling Party No:</td>
                    <td align="left"><input type="text" name="polling_party_no" id="polling_party_no" style="width:142px;" onchange="return personnel_list();" /></td><td colspan="2">&nbsp;</td>
                </tr>
                <tr>
                	<td align="left">Post Status:</td>
                    <td align="left" colspan="3"><select id="posting_status" name="posting_status" onchange="return personnel_list();" style="width:150px;">
                    								<option value="0">-Select Posting Status-</option>
													<?php 
$rsP = fatch_postingstatus();
$num_rows = rowCount($rsP);
if ($num_rows > 0) {
    for ($i = 1; $i <= $num_rows; $i++) {
        $rowP = getRows($rsP);
        echo "<option value='{$rowP['0']}'>{$rowP['1']}</option>\n";
    }
}
$rsP = null;
$num_rows = 0;
$rowP = null;
?>
                                                 </select></td>
                </tr>
                <tr>
                	<td align="left"><b>Personnel ID:</b></td>
        ?>
</th>
            	</tr> 
                <tr><td colspan='2' align='left'>
            		<table width='100%' class='table1'>
                    	<tr><td align="center">Post Status</td><td align="center">Central Government</td>
                        	<td align="center">State Government</td>
                            <td align="center">Central Government Undertaking</td>
                            <td align="center">State Government Undertaking</td>
                            <td align="center">Local Bodies</td>
                            <td align="center">Govt. Aided Organisation</td>
                            <td align="center">Autonomous Body</td>
                            <td align="center">Other</td></tr>
                        <?php 
        include_once '../function/add_fun.php';
        $rsPostStat = fatch_postingstatus();
        $num_rowsPostStat = rowCount($rsPostStat);
        if ($num_rowsPostStat > 0) {
            for ($i = 1; $i <= $num_rowsPostStat; $i++) {
                $rowPostStat = getRows($rsPostStat);
                $post_stat = $rowPostStat['post_stat'];
                ?>
                            <tr><td align="center"><?php 
                echo $rowPostStat['post_stat'];
                ?>
</td>
                            <?php 
                include_once '../function/report_fun.php';
                $c_g = 0;
                $s_g = 0;
                $c_g_u = 0;