var GlobalPath	=	'http://www.reisemobil-international.de/';

function DeleteMeldungBild(websiteUrl, id_club_news, loop, id_club)
{
	Checker = confirm("Wollen Sie dieses Bild wirklich entfernen?");
	if(Checker == true)
	{
		var url	=	websiteUrl + "_scripts/_clubs/pflege/bildDelete.php?id_club_news=" + id_club_news + "&loop=" + loop + "&id_club=" + id_club;
		document.location.href	=	url;
	}
}

function DeleteMeldung(websiteUrl, id_club_news, id_club)
{
	Checker = confirm("Wollen Sie diese Meldung wirklich entfernen?");
	if(Checker == true)
	{
		var url	=	websiteUrl + "_scripts/_clubs/pflege/delete.php?id_club_news=" + id_club_news + "&id_club=" + id_club;
		document.location.href	=	url;
	}
}

function ShowLongPost(id_club_news)
{
	var data	=	"id_club_news=" + id_club_news;
	$.post(
		GlobalPath + "_scripts/_clubs/_ajax/ShowLongPost.php", data, function(data)
		{
			$("#club_news_short_" + id_club_news).html(data);
			$("#club_news_short_" + id_club_news).show();
		}
	)
}
