window.onload=focusForm;
function focusForm (){ 
   if (document.getElementById('LastName')){
     document.getElementById('LastName').focus(); 
   } 
   if (document.getElementById('term')){
      document.getElementById('term').focus();
   }
}


function godept(myform)
{
        var box = myform.deptid;
        var destination = box.options[box.selectedIndex].value;
        if (destination && destination != 0) {
           location.href="directory.php?deptid=" + destination;
        }
} 



