function getResource(what){
	if($('#fCurrent').val() != what){ 
		
		$.get("?", { "ajax" : "true", "act": "getResource", "do": "links", "rid": what },
	　 		function(data){
				$('#resText').html(data);
				$('#fCurrent').val(what);
				$('#resText').jScrollPaneRemove();
				$('#resText').jScrollPane({scrollbarWidth:16});
				return true;
	　 		}
		);
	
	}
}
