

function proccessCheckBox( Check, ParentId)
{
	var childsCategory = document.getElementById(ParentId);
	var allChilds = childsCategory.getElementsByTagName("input");
	var totalChilds = allChilds.length;
	for ( i= 0; i< totalChilds ; i++ )
	{
		option = allChilds[i];
		option.checked= Check;
	}
	return true;
}


