function newsToArchive(id){
	Check = confirm("Wollen Sie diese Nachrich ins Archiv verschieben?");
	if (Check == true) {
		document.location = '/news/?a=archiv&id='+id;
	}
}

function newsEdit(id){
	Check = confirm("Wollen Sie diese Nachrich bearbeiten?");
	if (Check == true) {
		document.location = '/news/?a=edit&id='+id;
	}
}