function GetTopics(success_function) {
	$.ajax({
		async : false,
		type : "POST",
		url : "client.php",
		data : "action=ajax_get_topics",
		success : success_function
	});
}
