function initDeleteLink()
{
	document.getElementById( 'deletelink' ).onclick = function()
	{
		addConfirmFeedback( 'Är du säker på att du vill ta bort projektet helt och hållet?', function() { document.location.href = this.href; }, this )
		return false;
	}
}
addOnloadListener( initDeleteLink );