	function searchCardPage(page){
		var str = $("form").serialize();
		$.getJSON(web_url+"psn_card/cardSorter/"+page+"/?"+str,{}, function(data, status) {
			if (status=='success'){
				$('#content').html(data);
			}else{
				alert("ERROR");
			}
		});	
	}
