<h3 style="text-align: left;">PENILAIAN DATA SKP PEGAWAI <?php 
echo strtoupper(detail_pegawai($ds["id_pegawai"], "nama_pegawai"));
?>
 (NIP : <?php 
echo strtoupper(detail_pegawai($ds["id_pegawai"], "nip"));
?>
)</h3>
					<div class="bodypanel">
						<input type="button" value="Kembali" onclick="document.location.href='?mod=spv_skp_target';" />
						<div class="kelang"></div>
						<?php 
$ds_bulan_ke = mysql_fetch_array(mysql_query("SELECT bulan FROM tbl_uraian_realisasi_skp WHERE id_skp='" . $id_skp . "' AND status_supervisi=1 GROUP BY bulan"));
$bulan_ke = $ds_bulan_ke["bulan"];
?>
						<div style="padding: 5px; border: solid 1px #CCC; font-family: sans-serif; font-size: 10pt; font-weight: bold;">Bulan Ke : <?php 
echo $bulan_ke . " ( " . bulan_ke_skp($bulan_ke, $id_skp) . " )";
?>
</div>
						<div class="kelang"></div>
						<table border="0px" cellspacing='0' cellpadding='0' width='100%' class="listingtable">
						<thead>
							<tr class="headertable">
								<th width='40px'>No.</th>
								<th>Kegiatan / Tugas Jabatan</th>
								<th width='50px'>AK</th>
								<th width='150px'>Kuantitas / Output</th>
								<th width='150px'>Kualitas / Mutu</th>
								<th width='150px'>Waktu (Bulan)</th>
								<th width='150px'>Biaya</th>
							</tr>
						</thead>
        <input type="button" value="Lihat Catatan Supervisi" onclick="catatan(<?php 
echo $bulan_ke;
?>
);" />
        <!--<input type="button" value="Cetak Output Realisasi SKP" onclick="window.open('cetak/cetak_realisasi_skp.php?id_skp=<?php 
echo $_GET["id"];
?>
');" />-->
        <div class="kelang"></div>
        <?php 
echo "<h2>" . $sudah_bener . " TES</h2>";
if ($sudah_bener == 0) {
    ?>
        <div style="padding: 5px; border: solid 1px #CCC; font-family: sans-serif; font-size: 10pt; font-weight: bold;">
            Bulan Ke : <?php 
    echo $bulan_ke . " ( " . bulan_ke_skp($bulan_ke, $_GET["id"]) . " )";
    ?>
        </div>
        <?php 
} else {
    ?>
        <select name="cboBulan" id="cboBulan">
        <?php 
    $arr_bulan = array("", "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember");
    for ($i_bln = 1; $i_bln < count($arr_bulan); $i_bln++) {
        echo "<option value='" . $i_bln . "'>" . $arr_bulan[$i_bln] . "</option>";
    }
    ?>
        </select>
        <?php 
}