function searchPeripheralPage(page){
	$.getJSON(controller_url+"peripheralSorter/"+page,{}, function(data, status) {
	if (status=='success'){
			$('#'+platform+'-left').html(data);
		}else{
			alert("ERROR");
		}
	});	
}
function searchConsolePage(page){
	var url = controller_url+"consoleSorter/"+page;
	$.getJSON(url,{}, function(data, status) {
	if (status=='success'){
		$('#'+platform+'-left').html(data);
	}else{
		alert("ERROR");
	}
	});	
}