function confirmSubmit() 
{
	var agree=confirm("Wollen Sie wirklich löschen?");
	if (agree)
		return true ;
	else
		return false ;
}

function confirmSubmitText( text) 
{
	var agree=confirm("Wollen Sie wirklich "+ text +"?");
	if (agree)
		return true ;
	else
		return false ;
}
