  function open_window(file,resize)
  {
   l=(screen.width-550)/2;
   t=(screen.height-350)/2;
   atrib='left=' + l + ',top=' + t + ',width=550,height=350,menubar=no,scrollbars=yes,resizable=' + resize;
   window.open(file,'',atrib);
  }


  function open_print_window(file,resize)
  {
   l=(screen.width-650)/2;
   t=(screen.height-500)/2;
   atrib='left=' + l + ',top=' + t + ',width=650,height=500,menubar=no,scrollbars=yes,resizable=' + resize;

   window.open(file,'',atrib);
  }

 function printpage()
 {
     var bw
     bw = ''

     if (navigator.appName=='Microsoft Internet Explorer'){
     bw = 'ie'
      }

   if (bw=='ie')
    {
      document.all['divPrint'].style.display='none'
      window.print()
      document.all['divPrint'].style.display='block'
     }
   else
     {
       document.frmPrint.prok.value='1'
       document.frmPrint.submit()
     }
 }

