function delete_request(link, type) {
	var answer = confirm("Willst du dieses " +type+ " wirklich löschen?")
	if (answer){
		window.location = link;
	}
}

//Download
function download()
{
	$('#downloadbar').slideDown('fast');
	setTimeout("$('#downloadbar').slideUp('fast');",5000 );
	return false;
}

//Wettbewerb
function wettbewerb_start()
{
	$('#wettbewerb').slideDown('fast');
	setTimeout("$('#wettbewerb').slideUp('fast');",5000 );
	return false;
}