function cardChangeSort() {
	if(document.getElementById('cardSortOrder').selectedIndex == 0)
		window.location = '/cardList/added/';
	else if(document.getElementById('cardSortOrder').selectedIndex == 1)
		window.location = '/cardList/rank/';
	else if(document.getElementById('cardSortOrder').selectedIndex == 2)
		window.location = '/cardList/name/';
	else if(document.getElementById('cardSortOrder').selectedIndex == 3)
		window.location = '/cardList/login/';
}
