/* written by T.D.L.

diverse notwendige JavaScripts

*/

function newPopup(a,b,c)
{
  if (b+c>0)
  { F = window.open(a,"_blank","width="+b+",height="+c+",left=0,top=0,toolbar=no,status=no"); }
  else
  {
     F = window.open(a,"Download","width=800,height=600,left=0,top=0,location=no,menubar=yes,resizable=yes");
     F.name = a;
  }
  F.focus();
}

function goBack()
{
  history.back();
}

function deleteOK()
{
  delcheck = confirm("Wollen Sie diesen Eintrag wirklich loeschen?");
  if(delcheck == false) return false;
  else return true;
}
