<!--
function drop_angebot(param) {
	if(document["formularangebot" + param].pw.value.length == 8) {
		var result = confirm("Sind Sie sicher?");
		if(result) {
			document["formularangebot" + param].action="php/angebot.php?aktion=drop";
			document["formularangebot" + param].submit();
		}
	} else {
		alert("Überprüfen Sie bitte folgende Angaben:\n\nPasswort");
	}
}
//-->

