function processSearch() {
                      var t = 'http://www.configuresoft.com/searchresults.aspx?cx=001328433572790970149:fz73sldccdg&cof=FORID:11&ie=UTF-8' 

                      t = t + '&q=' + document.PortalView.q.value;

                      window.location = t;
                  } 

function submitenter(myfield,e)
{

var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;

if (keycode == 13)
   {
                      var t = 'http://www.configuresoft.com/searchresults.aspx?cx=001328433572790970149:fz73sldccdg&cof=FORID:11&ie=UTF-8' 

                      t = t + '&q=' + document.PortalView.q.value;

                      window.location = t;
   return false;
   }
else
   return true;
}




