{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">
Add Category
</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><img title alt src="images/blank.gif" width="1" height="1"></td>
</tr>
<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=add" method="post" onSubmit="return validate();">
<tr>
<td class="txtbox_bgcolor" width="20%">
Category Name</td>
<td class="txtbox_bgcolor" width="33%">
<input name="category_name" type="text" size="20" class="text"></td>
</tr>
<tr>
<td class="alttxtbox_bgcolor" width="20%">
Category Description</td>
<td class="alttxtbox_bgcolor" width="33%">
<textarea name="category_description" rows="10" cols="30" class="text"></textarea></td>
</tr>
<tr>
<td class="btn_bg" colspan="1"></td>
<td class="btn_bg" colSpan="1">
<input type="image" src="images/add_category.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.category_name.value=="")
{
alert("Please Enter Category Name !");
document.f1.category_name.focus();
return false;
}
if(document.f1.category_description.value=="")
{
alert("Please Enter some Category Description !");
document.f1.category_description.focus();
return false;
}
return confirm("Are you sure? The Category will be added!");
}
</script>
{/literal}