function deleteAttachment(id) {
	Check = confirm("Wollen Sie den Anhang wirklich löschen?");
	if(Check == false) {
		window.location.href = '#';
	}
	else {
		document.FormContactHTMLNewsletter.sFunc.value='deleteAttachment'; 
		document.FormContactHTMLNewsletter.lAttachmentID.value=id; 
		sendForm();
	}
}

function sendForm(i_sForm) {
	editor_fillForm(i_sForm);
	document.forms[i_sForm].submit();
}