// JavaScript Document
<!--
function Validator(theForm)
{

  if (theForm.level.selectedIndex == 0)
  {
    alert("Please select one of the \"Level\" options.");
    theForm.level.focus();
    return (false);
  }
	
  if (theForm.subject.selectedIndex == 0)
  {
    alert("The first \"Subject\" option is not a valid selection.  Please choose one of the other options.");
    theForm.subject.focus();
    return (false);
  }
  if (theForm.topic.selectedIndex == 0)
  {
    alert("The first \"Topic\" option is not a valid selection.  Please choose one of the other options.");
    theForm.topic.focus();
    return (false);
  }

  return true;
}  
//-->
