function goPage(texto){
	if(texto != undefined && texto != ""){
		url = url + "/" + texto.replace(/ /g,"-");
		window.location = url;
	}
}
$(document).ready(function () {
	$("#boton").click(function () {		
		goPage($("#texto").attr("value")); 
	});	
	$("#texto").keypress(function (e) {		
		if (e.which == 13){
			goPage($("#texto").attr("value"));
		}
	});	
});

function mostrarAnuncio(){
	document.write('<script> google_ad_client = "pub-5368813242011972"; ' +
				   ' google_ad_slot = "4389743773"; ' +
				   ' google_ad_width = 336; ' +
				   ' google_ad_height = 280; </script>');
	document.write(unescape("%3Cscript src='http://pagead2.googlesyndication.com/pagead/show_ads.js' type='text/javascript'%3E%3C/script%3E"));	
}