/* Script to confirm deletion of data (Polish version) */

function DeleteAd(NextPageLink)
{
	var confirmstr = "Czy napewno chcesz usun±ć ogłoszenie?";

	if (confirm(confirmstr))
	{
		location.href = NextPageLink;
	}
}

function DeleteBlog(NextPageLink)
{
	var confirmstr = "Uwaga: wszystkie artykuły z bloga będ± usunięte.\nCzy napewno chcesz usun±ć bloga?";

	if (confirm(confirmstr))
	{
		location.href = NextPageLink;
	}
}

function DeleteBlogArticle(NextPageLink)
{
	var confirmstr = "Czy napewno chcesz usun±ć ten artykuł?";

	if (confirm(confirmstr))
	{
		location.href = NextPageLink;
	}
}

function DeleteForumMessage(NextPageLink)
{
	var confirmstr = "Czy napewno chcesz usun±ć ten post?";

	if (confirm(confirmstr))
	{
		location.href = NextPageLink;
	}
}

