<!--
// delete confirmation

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

