// line 760
function sh(ctrid,ajax,cat_id,section_id,makeid,modelid,year)
{
ctrl = document.getElementById('cat_'+ctrid);
if(ajax==1)
{
	ctrl_ajax=document.getElementById('cat_l_'+ctrid);
	ctrl_ajax_=document.getElementById('cat_l_txt_'+ctrid);
	if(ctrl_ajax_.innerHTML!='1')
	{//we have to show loading and load sub-cat list using ajax
		ctrl.style.display='none';
		ctrl=ctrl_ajax;
		str = "/neegex_ajax.php?"+"act=load_sub_cat&pcatid="+cat_id+"&makeid="+makeid+"&modelid="+modelid+"&year="+year+"&rid="+ctrid+"&sectionid="+section_id;
		document.getElementById('ifr_neegex').src = str;
		//handler("/neegex_ajax.php","act=load_sub_cat&pcatid="+cat_id+"&makeid=$makeid&modelid=$modelid&year=$year&rid="+ctrid+"&sectionid="+section_id);
	}
}
img=document.getElementById('img_'+ctrid);
if(ctrl.style.display=='none')	
{						
	ctrl.style.display='';
	if(img)
	{
		img.src="/minus.png";
	}
}
else
{
	ctrl.style.display='none';
	if(img)
	{
		img.src="/plus.png";
	}
}				
}


