$(function(){
	$('a.outgoing').click(function(){
		var outgoing_name = '';
		if($(this).attr('name') != ''){
			outgoing_name = '('+$(this).attr('name')+')';
		}
		$.get('/_logs_for_system/outgoing.txt?id='+encodeURIComponent(location.href+outgoing_name+'---'+$(this).attr('href')));
	});
});
