<!--

function preview( a )
{
//  var inf = form.htmlArea.value;
    
  var hlavny       = ""; // a.form_hlavny.value;
  var pokracovanie = ""; // a.form_pokracovanie.value;
  
  win = window.open('', 'preview', 'toolbar = 1, status = no, width = 620, height = 600, scrollbars = yes');

  win.document.writeln('<html><head><title>preview</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type="text/css" rel="stylesheet" href="/include/css/print.css"></head>');
  win.document.writeln('<body><div id="show"><br>');

  win.document.writeln('<div class="nadtitulok">', a.form_nadtitulok.value, '</div>');
  win.document.writeln('<div class="titulok">', a.form_titulok.value, '</div>');
  win.document.writeln('<div class="autor">', a.form_autor.value, '</div>');
  win.document.writeln('<div class="datum"> | dd.mm.year </div>');

  if ( a.form_perex.value != "" )
    win.document.writeln('<div class="perex">', a.form_perex.value, '</div>');
    
  hlavny       = spaw1_obj.getPageHtml(spaw1_obj.getActivePage());
  pokracovanie = spaw2_obj.getPageHtml(spaw2_obj.getActivePage());
  
  win.document.writeln( hlavny );
  win.document.writeln('<p>');
  win.document.writeln( pokracovanie );

  win.document.writeln('</div>');
  win.document.writeln('<br><hr><br><center><a href="javascript:window.close()">Close Preview</a></center><br>');
  win.document.writeln('</body></html>');
  
  win.document.close();
}

-->