document.onclick = function(e) {
  // get either event (W3C) or
  // window event object (MSIE)
  e = e || window.event;
  // get either target (W3C) or event source (MSIE)
  var t = e.target || e.srcElement;
  if(t.id == "c_campoBusqueda") {
	  t.value="";
  }  
}

document.onblur = function(e) {
	  e = e || window.event;
	  var t = e.target || e.srcElement;
	  if(t.id == "c_campoBusqueda") {
		  alert("Saliendo del campo de búsqueda");
	  }

}