// JavaScript Document
function enviaGoogle() {
  var i;
  for (i=0;i<document.f_cercaGoogle.onBusco.length;i++){
       if (document.f_cercaGoogle.onBusco[i].checked)
          break;
    } 
  miOnBusco = document.f_cercaGoogle.onBusco[i].value;
  if (miOnBusco == "ALL_UB") {
	document.f_cercaGoogle.as_q.value = document.f_cercaGoogle.q_ub.value + " site:ub.edu OR site:ub.es OR site:ub.cat";
	document.f_cercaGoogle.as_sitesearch.value = "";
  } else {
	document.f_cercaGoogle.as_q.value = document.f_cercaGoogle.q_ub.value;
	document.f_cercaGoogle.as_sitesearch.value = miOnBusco;
  }
  document.f_cercaGoogle.submit();
}
