function bildfenster(name)
{
   var fenster = open("", "bildfenster", "locationbar=no,toolbar=no,resizable=no,status=no,scrollbar=no,menubar=no") ;
   fenster.document.close() ;
   fenster.document.write("<html><body>") ;

   fenster.document.write("<img src=" + name + " style='position:absolute; top:0px; left:0px;'>") ;
   fenster.document.write("</body></html>") ;
   fenster.resizeTo(fenster.document.images[0].width+8, fenster.document.images[0].height + 48) ;
   fenster.document.title = name ;
   fenster.focus() ;
}

function dokumentfenster(name)
{
   var fenster = open("", "dokumentfenster", "locationbar=no,toolbar=no,resizable=yes,status=no,scrollbars=yes") ;
   fenster.document.close() ;
   fenster.document.write("<html><body>") ;
   fenster.document.write("<img src=" + name + " style='position:absolute; top:0px; left:0px;'>") ;

   var w = 800 ;
   var h = 600 ;
   if (fenster.document.images[0].width < w)
	   w = fenster.document.images[0].width ;
   if (fenster.document.images[0].height < h)
	   h = fenster.document.images[0].height ;
   fenster.document.write("</body></html>") ;

   fenster.resizeTo(w+28, h+32) ;
   fenster.document.title = name ;
   fenster.focus() ;
}

function gohome()
{
    window.open('index.htm','_top') ;
}
