function formataBusca(editoria) {

String.prototype.checkQuotes=function(quoteReplace){
	var str=this;
	var rep=(quoteReplace===undefined)? "\"" : quoteReplace;
	
	var re=/^[^"]*(\"[^"]*\")/;
	while(re.exec(str)){
		var res=re.exec(str)[1];
		var subs=res.replace(/\"/g, "|:qq:|");
		subs=subs.replace(/ +/g, "+");
		str=str.replace(res, subs);
	}

	str=str.replace(/\|\:qq\:\|/g, rep);
	return str;
}

var aa=document.forms.Busca.campo.value;
var t=aa.checkQuotes();

window.location = "http://buscador.terra.com.br/default.aspx?ca=l&source=Search&query=" + t + "&Image.x=19&Image.y=12#Source%3DSearchAjax%26ca%3Ds%26query%3D" + t + "%20site%3A" + editoria + "%26first%3D1";
}