function checking_key(course_form)
{
if(course_form.method.selectedIndex==0)
   {
   alert('Please select an Instructional Method');
   course_form.method.focus();
   return false;
   }
}

