<!--

function toggleFavlist(selector_toggler, selector_slave, selector_content, listid, type, readonly) {
	slideToggleWrapper(
		selector_toggler, 
		selector_slave,
		function() {
			FFsetLoading(selector_content);
		},
		false,
		function() {
			$(selector_content).load('/?a=q&a1=v&t=' + type + '&favs=1&listid=' + listid + (readonly ? '&mode=nickdetails' : ''));
		},
		function() {
			$(selector_content).html('');
		}
	);
}

function favoritesSwitchAlert(favid, fragment_params, alert, type) {
	FFsimpleAjaxLoader(
		'#switch_alert_' + favid,
		'#switch_alert_' + favid,
		'/' + fragment_params,
		{
			action: alert,
			favid: favid,
			type: type
		}
	);
}

//-->