function isi(page){
	$.get('/alopedia/akses_route.php?page='+page, function(data){
		$('#notransparan').empty();
		$('#notransparan').append(data);
	});
}
function isiparam(page,param){
	$.get('/alopedia/akses_route.php?page='+page+'&'+param, function(data){
		$('#transparan').empty();
		$('#notransparan').empty();
		$('#notransparan').append(data);
	});
}