function OpenPDFhoch(PDFSeite) {
   var WinParm = "height=1000, width=700, left=400, top=100, toolbar=no, menubar=no, scrollbars=yes, resizeable=yes, app=AdobeReader";
  PDFSeite = "docs/"+PDFSeite+".pdf";
   window.open(PDFSeite,"",WinParm);
}
function OpenPDFquer(PDFSeite) {
   var WinParm = "height=700, width=1000, left=400, top=100, toolbar=no, menubar=no, scrollbars=yes, resizeable=yes, app=AdobeReader";
  PDFSeite = "docs/"+PDFSeite+".pdf";
   window.open(PDFSeite,"",WinParm);
}
function OpenXLS(XLSSeite) {
   var WinParm = "height=1000, width=700, left=400, top=100, toolbar=no, menubar=no, scrollbars=yes, resizeable=yes";
  XLSSeite = "docs/"+XLSSeite+".xls";
   window.open(XLSSeite,"",WinParm);
}

