var isuci;
function OpenWindow(seite,breite,hoehe,res,scroll)
{
  CloseWindow();
  var text = "width=" + breite + ",height=" + hoehe + ",status=no,resizable=" + res + ",scrollbars=" + scroll + ",menubar=no,toolbar=no";
  ismakeit = window.open(seite, "UCI", text);
  ismakeit.focus();
}
function CloseWindow()
{
  if(isuci)
    { isuci.close();  }
}

var isPDF;
function OpenWindowPDF(seite,breite,hoehe,res,scroll)
{
  CloseWindowPDF();
  var text = "width=" + breite + ",height=" + hoehe + ",status=no,resizable=" + res + ",scrollbars=" + scroll + ",menubar=no,toolbar=no";
  isPDF = window.open(seite, "PDF", text);
  isPDF.focus();
}
function CloseWindowPDF()
{
  if(isPDF)
    { isPDF.close(); }
}

