function Pruefdies(theForm){
Check = confirm('Willst du das wirklich?');
if(Check == false)
{
return false;
}
else{
return true;
}
}
