function changeOrder(_order,_pre) {
	var newOrder = _order == "ASC" ? "desc" : "asc";
   window.location = dir + _pre + newOrder + "/";
}