<div align="center">
<table border="0" width="40%">
<tr>
<td align="center" valign="middle">
<b></b>
</td>
<td>
{html_select_date start_year=1900 display_days=false reverse_years=true month_empty="All months" year_empty="All years" month_extra="id='search_month'" year_extra="id='search_year'"}
</td>
<td valign="center">
<input type="button" name="search" value="Search" onclick="searchEmployeeJoiningsList('','','','0');" class="login_btn">
</td>
</tr>
</table>
</div>
<div id="report_employeeJoinings">{include file=report/employeeJoiningsList}</div>
{literal}
<script type="text/javascript">
$("body #container").ready(
function(){
$(this).find('select:first').val("");
$(this).find('select:last').val("");
}
);
function searchEmployeeJoiningsList(f,msg,k,qs){
cShowActivity('1');
var url="##LBL_SITE_URL##index.php/page-report-choice-employeeJoinings";
var m=$("#search_month").val();
var y=$("#search_year").val();
if(qs===''){
qs=$("#qstart").val();
}
var sal_range = $("#sal_range").val();
$.post(url,{ce:0,chk:1,qs:qs,m:m,y:y},function(res){
$("#report_employeeJoinings").html(res);
cHideActivity();
});
}
</script>
{/literal}