function MostrarListaArticulos(){
	var indice=document.getElementById("articulos").selectedIndex;
	if (indice>0){
		var idCategoria=document.getElementById("articulos").options[indice].value;
		document.location.href='../lista_articulos.asp?categoria='+idCategoria;
	}
}

function Buscar(){
		
	if(QuitaBlancos(document.getElementById("txtBusqueda").value)!=''){
		document.frmBuscar.action="lista_resultados.asp";
		document.frmBuscar.submit();	
	}
	else{
		alert("Introduzca un texto para la búsqueda");
		document.getElementById("txtBusqueda").focus();
	}
}

function QuitaBlancos(string) {
	var temp = "";
	string = '' + string;
	splitstring = string.split(" ");
	for(i = 0; i < splitstring.length; i++)
	temp += splitstring[i];
	return(temp);
}