
  // Function simply opens a new grading page when the user selects a new page in the List . . .
  function openPage(aValue) {
	 //Format input as string . . .
	 var input = "" + aValue;
	 if(input != "Select")
	 {
		//Format the new url from the value in the list . . .
	    if(input.substring(0,5) == "Adult")
	     {
		    var newurl = input.substring(6, aValue.length) + " Grading" + ".htm";
	     }
	     else if(input.substring(0,5) == "Child")
	     {
		    var newurl = "Childs " + input.substring(6, aValue.length) + " Grading" +".htm";
	     }
		 
	     // Open the new grading page . . .
	     location.href = newurl; 
	 }
  }		 



