<!--
function checkForm(frmObj)
{
	var isChecked = false;
	var iCheckBoxCount = 0;
	var iCount = frmObj.length;
	for (i=0;i<iCount;i++) {
		if (frmObj(i).checked) {
			isChecked = true;
			iCheckBoxCount +=1;
		}
	}
	
	if (isChecked == false) {
		alert ('You must select at least one Category from the page.');
		return false;
	}
	else if (iCheckBoxCount > 10) {
		alert ('You may select only up to 10 categories at once.');
		return false;
	}
	
	else return true;
}

function checkForm2(frmObj)
{
	var iCount = frmObj.length;
	for (i=0;i<iCount;i++) {
		if (frmObj(i).checked) {
			return true;
		}
	}
	alert ('You must select at least one Item from the page');
	return false;
}
-->
