function AddItem(item_id, params){
    document.orderForm.addCatId.value = item_id;
	var str = params.join('-');
	if (str == '')
	{
		str = '0';
	}
	document.orderForm.addParams.value = str;
    document.orderForm.submit();
	//document.location.href = document.location.href;
}