
/* controle sobre a resposta da newsletter */

function resposta_buscar( req ) {
	var dados = String( req.xhRequest.responseText );
	window.location.href = "./busca/" + dados;
}

function buscar() {
	if ( document.getElementById( 'txt_busca' ).value == '' )
		alert( 'Preencha corretamente os campos.' );
	else {
		window.location.href = "http://www.pharmaciadaterra.com.br/busca/" + document.getElementById( 'txt_busca' ).value;
	}
}

