function getcatid()
{
	var catid="-1";
	var flag=false;
	var isArray=false;
	obj=document.forms[1];
	for(i=0; i<obj.catcheckbox.length; i++)
	{
		
		if(obj.catcheckbox[i].checked)
		{
				catid = catid+","+obj.catcheckbox[i].value
				flag=true;
		}
		isArray=true;
	}
		
	if(!isArray)
	{
		if(!obj.catcheckbox.checked)
		{
			alert("Please Select  Category");
			return;
		}
		catid=obj.catcheckbox.value;
	}
	if(flag==false && isArray)
	{
		alert("Please Select At List One Category");
		return;
	}
	obj.catid.value=catid;
	obj.action="pricelist.php";
	obj.submit();
	


}

function checkall()
{
	obj=document.forms[1];
	for(i=0; i<obj.catcheckbox.length; i++)
	{
		obj.catcheckbox[i].checked=true;
		
	}

	return;
}
function uncheckall()
{
	obj=document.forms[1];
	for(i=0; i<obj.catcheckbox.length; i++)
	{
		obj.catcheckbox[i].checked=false;
		
	}

	return;
}