function leeren(element) {
 if (element.className == 'mail3') {
  element.value = "";
  element.className = 'mail2';
 }
}

function loesch(id) { 
 check = confirm("Soll der Termin wirklich geloescht werden?");
 if (check == true ) { window.location.replace('auth.php?m=1&mod=l&id='+id); }
}


function presse(bild,b,h) {
 if (window.voll) { voll.close(); }
 voll = window.open('view.php?bild='+bild,'Vollbild','height='+h+',width='+b+',top=30,left=50,scrollbars=yes');
 voll.focus();
}


function impress(e) {
   fbreite = 400; fhoehe = 490;
   breite = screen.width; hoehe  = screen.height; links  = e.screenX; oben   = e.screenY;
   if (links + fbreite < breite) { versatzx = links + 3; } else { versatzx = links - fbreite + 3; }
   if (oben  + fhoehe < hoehe)  { versatzy = oben + 3; } else { versatzy = oben - fhoehe + 18; }

   press = window.open('i.php','Im','left='+versatzx+',top='+versatzy+',height='+fhoehe+',width='+fbreite+',scrollbars=auto');
   press.focus();

}

