var Datei, Name, Titel;
var Ti;
var w, h;

function openWin(Datei,Name,Ti,Titel,w,h)
{
  //var String = "width="+w+",height="+h+"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=50,top=50";
  var hString = "width="+w+",height="+h+",left="+((screen.availWidth - w) / 2)+",top="+((screen.availHeight - h) / 2)+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no";
  var Fenster = window.open (Datei,Name,hString);
  Fenster.focus();
  if (Ti != 0) Fenster.title = Titel;
}

function openBild(Datei,Titel,w,h)
{
   var Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + w + ',height=' + h + ',left=50,top=50';
   var Bild = window.open('','Bild',Optionen);
   with (Bild)
   {
      document.writeln('<html><head><title>' + Titel + ' - www.karsten-lenke.de </title></head>');
      document.writeln('<body>');
      document.writeln('<p><img src="' + Datei + '" alt="" align="middle" border="0"></p>');
      document.writeln('</body>');
      document.writeln('</html>');
   }
   Bild.focus();
}

function openMeldung(Datei,Titel,w,h)
{
  //var String = "width="+w+",height="+h+"toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=50,top=50";
  var hString = "width="+w+",height="+h+",left="+((screen.availWidth - w) / 2)+",top="+((screen.availHeight - h) / 2)+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no";
  var Meldung = window.open (Datei,"Vormeldung",hString);
  Meldung.focus();
  Meldung.title = Titel;
}

function openMail(Datei)
{
  //var String = "width=500,height=570,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=50,top=50";
  var w=550;
  var h=695;
  var hString = "width="+w+",height="+h+",left="+((screen.availWidth - w) / 2)+",top="+((screen.availHeight - h) / 2)+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no";
  var Mail = window.open (Datei,"MailFormular",hString);
  Mail.resizeTo(w,h);
  Mail.focus();
}

function closeWindow()
{
  //ist diese ein frame
  if (top.frame1) top.close(); else window.close();
}
