var domainroot="www.fcba.com.au"; //

function Gsitesearch(curobj){

  if (domainroot == "www.yourweb.com") { // do not modify this line
    if (window.location.href.indexOf("http")) {
      alert("This search box is not yet set up - to edit, go to the 'Library/search.htm' file and configure the domain root");
      return false;
    } else {
      domainroot = location.hostname;
    }
  } else {

    curobj.q.value="site:"+domainroot+" "+curobj.qfront.value
  }
  return true;
}

function submitSearchForm() {
  var myForm = document.getElementById("searchForm");

  if (Gsitesearch(myForm)) {
    myForm.submit();
  }
}
