<!--

function chkForm(frm) {
 for (var i=1; i<chkForm.arguments.length; i++){
   fld=chkForm.arguments[i];
   i++;
   txt=chkForm.arguments[i];
   if(document.forms[frm].elements[fld].value == ""){
     alert(txt);
     document.forms[frm].elements[fld].focus();
     return false;
   }
 }
}

function loeschen(redirect)
{
	Check = confirm("Soll wirklich gelöscht werden?");
	if(Check == true){
		 window.location.href = redirect;
	}
}


//-->
