// JavaScript Document for product list
function applyOrder(sUrl, paramAlone){
	if(paramAlone != ''){
		document.location = sUrl;
	}
}

function applyTiendaFilter(sUrl, paramAlone, urlWithOutFilter){
	if(paramAlone != ''){
		document.location = sUrl;
	}else{
		document.location = urlWithOutFilter;
	}
}