{include file="head.tpl"}
{include file="left.tpl"}
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="21"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/corner9.gif" width="5" height="21"></td>
<td width="99%" class="header"><span class="whitetext">
Edit Equipment
</span></td>
<td><img src="images/corner10.gif" width="5" height="21"></td>
</tr>
</table></td>
</tr>
<tr>
<td class="border3side" valign="top" height="100%"><table width="100%" height="100%" border="0" cellspacing="8" cellpadding="0">
<tr>
<td valign="top">
<!-- ####################### Paste the Table to Table from here ############## -->
<table cellSpacing="0" cellPadding="0" width="98%" align="center" border="0">
<!--<tr>
<td style="border-left: 1px solid #bbbbbb; border-right: 1px solid #bbbbbb" bgColor="#bbbbbb">
<img title height="3" alt src="images/blank.gif" width="1" valign="top"></td>
</tr>
<tr>
<td style="border-left: 1px solid #bbbbbb; border-right: 1px solid #bbbbbb; padding-left: 18px; padding-right: 23px; padding-top: 11px" vAlign="top" bgColor="#ededed" height="180">-->
<td>
{if $status < 4}
<table borderColor="#ffffff" cellSpacing="1" cellPadding="0" width="100%" border="0">
<form name="f1" action="?act=edit" method="post" onSubmit="return validate();">
<input type="hidden" name="equipment_id" value="{$equipment_id}">
<tr>
<td class="txtbox_bgcolor"> Category</td>
<td class="txtbox_bgcolor">
<!--<select name="category" id="category" >
<option value="0"> -- Select Category -- </option>
//{section name=index loop=$category_id}
<option value="{$category_id[index]}" {if $cat_id==$category_id[index] } selected {/if}>{$category_name[index]}</option>
//{/section}
</select>-->
<input type="text" name="category" class="text" value="{$cate_name}" readonly="true" />
</td>
</tr>
<tr>
<td class="txtbox_bgcolor" width="20%">
Equipment Name</td>
<td class="txtbox_bgcolor" width="33%">
<input name="equipment_name" type="text" size="20" class="text" value="{$equipment_name}"></td>
</tr>
<tr>
<td class="txtbox_bgcolor" width="20%">
Model Number</td>
<td class="txtbox_bgcolor" width="33%">
<input name="equipment_model" type="text" size="20" class="text" value="{$equipment_model}"></td>
</tr>
<tr>
<td class="btn_bg" colSpan="1">
<td class="btn_bg" colSpan="1">
<input type="image" src="images/edit_eqp.gif" name="add"></td>
</tr>
</form>
</table>
{else}
<table borderColor="#ffffff" cellSpacing="1" cellPadding="0" width="100%" border="0">
<tr>
<td class="txt" align="center" width="20%" height="23">
<font color="RED">{$mes}</font>
</td>
</tr>
</table>
{/if}
</td>
</tr>
<!--<tr>
<td style="border-left: 1px solid #bbbbbb; border-right: 1px solid #bbbbbb" bgColor="#bbbbbb">
<img title height="4" alt src="images/blank.gif" width="1"></td>
</tr>-->
</table>
</td>
</tr>
</table>
<!-- ######################## End Here ##########################-->
{include file="foot.tpl"}
{literal}
<script language="Javascript">
function validate()
{
if(document.f1.equipment_name.value=="")
{
alert("Please Enter Equipment Name !");
document.f1.equipment_name.focus();
return false;
}
if(document.f1.category.value=='0')
{
alert("Please Select A Category");
document.f1.category.focus();
return false;
}
return confirm("Are you sure? the equipment will be edited");
}
</script>
{/literal}