function ShowFF(aid)
{
	$('#ff_title').html('<p>Loading...</p>');
	$('#ff_scroll').html('<div id="ff_inner">Loading...</div>');
	$('#ff_popup').css('display', 'block');

	$.post('index.php?page=cs_ajax&tit='+aid, '',
		function(d)	{	$('#ff_title').html(d); },'text');
	$.post('index.php?page=cs_ajax&aid='+aid, '',
		function(d)	{	$('#ff_scroll').html(d); },'text');
}

function HideFF() {	$('#ff_popup').css('display', 'none');}
