
PK 
<?php
include "templatic/head.php";
include "templatic/header.php";
?>
<div class="box">
<h2>Create New Certificate</h2>
<div style="padding:0px 1px;">
<table width="100%" border="0" cellpadding="3" cellspacing="3" align="center">
<tr>
<td><center><img src="certificate.jpg" width="180" height="236"> <img src="cont.jpg"></center></td>
</tr>
<tr>
<td align="center">
<form action="results.php" method="get">
<i>Find an Certificate/Invoice:</i>
<select name="status">
<option value="certificateno">Certificate No</option>
<option value="invoiceno">Invoice No</option>
<!--
<option value="certificateno_sub">Sub Certificate No</option>
-->
</select>
<input type="text" name="id">
<input type="submit" value="» Find »" class="amo-submit"><br>
<br></form></td></tr>
<form action="searched.php" method="POST">
<tr>
<td align="center">
<i>Search Certificate by Client</i>
<input type="text" name="client" id="exporterslist" />
<input type="submit" value="» Search »" class="amo-submit"><br><br>
</form></td>
</tr>
<form action="searched_agent.php" method="POST">
<tr>
<td align="center">
<i>Search Certificate by Agent</i>
<input type="text" name="ajtname" id="agentslist" />
<input type="submit" value="» Search »" class="amo-submit"><br><br>
</form></td>
</tr>
<form action="statement.php" method="get"></form>
<form action="agentdetail.php" method="get"></form>
</table>
</div>
</div>
<?php
include "templatic/footer.php";
?>


PK 99