var root="www.ebyte.it"

var searchaction=[
"http://search.msn.com/results.aspx",
"http://search.yahoo.com/search",
"http://www.google.com/search"]

var queryfieldname=["q","p","q"]

function switchaction(cur,index){
  cur.form.action=searchaction[index]
  document.getElementById("squery").name=queryfieldname[index]
}

function sitesearch(curobj){
  for (i=0; i< document.jksearch.se.length; i++){
    if (document.jksearch.se[i].checked==true)
    switchaction(document.jksearch.se[i], i)
  }
  if (document.jksearch.sw[0].checked==true) {
    document.getElementById("squery").value="site:"+root+" "+curobj.qfront.value
  } else {
    document.getElementById("squery").value=curobj.qfront.value
  }
}

