function EnterKey(event) {
   if (isNav) {if (event.which == 13) {return true;}}
   if (isIE) {if (event.keyCode == 13) {return true;}}
   return false;
}
function checkSearch() {
   var doc = window.document.forms["utk_seek"];

       with (window.document.forms["utk_seek"]) {
           if (doc.qtype.options[doc.qtype.selectedIndex].value == "itc") {
                 doc.qp.value="+site:itc.utk.edu";
                 window.location.href = "https://itc.utk.edu/cgi-bin/search.pl?qp=" + doc.qp.value + "&qt=" + doc.qt.value;
           } else if (doc.qtype.options[doc.qtype.selectedIndex].value == "lonline") {
                 doc.qp.value="+site:liveonline.utk.edu";
                 window.location.href = "/cgi-bin/search.pl?qp=" + doc.qp.value + "&qt=" + doc.qt.value;
           }  else {
                      doc.submit();
           }
    }
}

