﻿// JScript File

 function submitSearch (){
    window.location.href='Search.aspx?search_text=' + document.getElementById('gradsearch').value;
 }
 
 // fired when enter button 
 function doClick(e) {
     var key;
     if(window.event)
          key = window.event.keyCode;     //IE
     else {
          key = e.which;     //firefox     
     }
    if (key == 13)
    {
        //Get the button the user wants to have clicked
       window.location.href = "Search.aspx?search_text="+document.getElementById('gradsearch').value.toString();
    }
 }