function PDF(Datei,Titel)
{  
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=850,height=600,left=50,top=50';
   pdf_Fenster = window.open('','Protokoll',Optionen)
   with (pdf_Fenster) 
   {
      document.writeln('<html><head><title>' + Titel + ' - www.stoppuhr.net</title></head>');
      document.writeln('<frameset cols="100%,*">');
      document.writeln('<frame name="Protokoll" noresize src="' + Datei + '" >');
      document.writeln('</frameset>');
      document.writeln('</html>');
   }
   pdf_Fenster.focus();
}
