function confirmSubmit() {
	var agree=confirm("Sind Sie sicher?");
	if (agree)
		return true;
	else
		return false;
}