window.addEvent('domready',function(){
	//busqueda
	$('busquedaproducto').addEvent('submit',function(e){
		new Event(e).stop();
		
		var valSelect = 'all/';
		var valText = $('txtbuscar').getValue().replace(/\s+/g,'+')+'';
		var valor = $('txtbuscar').getValue();
		if (!valor.test(/^[\d\wáéíóúñÁÉÍÓÚÑ ]{3,32}$/)) {
		} else {
			valText=valText.toLowerCase();
			url_busqueda += valSelect+valText;
			window.location=url_busqueda;	
		}
	});

});