// JavaScript Document
function owin (datei,name,width,height) {
      sw = screen.width;
      sh = screen.height;
      if (width>sw-50) width=sw-50;
      if (height>sh-50) height=sh-50;
      pict = window.open (datei,name,'width='+width+',height='+height+',scrollbars=no,directories=no,resizable=yes,toolbar=no,location=no,status=no,menubar=no,left=150,top=00');
    }
