请教下这个函数是什么意思?
特别是红的这句。
function CheckScope(strSection)
{
  if(document.getElementById(strSection)==null) return true;
  var ArrayGradeno=document.getElementById(strSection).getElementsByTagName("input");  for (i=0; i <ArrayGradeno.length; i++)
  if (ArrayGradeno[i].checked) return true;
  return false;
}