function openWindow(bild, format)
{
  if (format == "h")
    {
    smallWindow = window.open("","fenster_h","width=620,height=480,left=20,top=20");
    smallWindow.focus();
    }
  else
    {
    smallWindow = window.open("","fenster_v","width=480,height=630,left=20,top=20");
    smallWindow.focus();
    }
  smallWindow.document.write("<HTML><HEAD><TITLE>"+bild+"</TITLE></HEAD>");
  smallWindow.document.write("<BODY bgcolor=\"#000000\"");
  smallWindow.document.write("<center><img src=\"../Bilder/"+bild+"\"></center>");
  smallWindow.document.write("</BODY></HTML>");
  smallWindow.document.close();
}

function openPanorama(bild, format)
{
  if (format == "h")
    {
    smallWindow = window.open("","fenster_h","scrollbars,width=1000,height=600,left=0,top=0");
    smallWindow.focus();
    }
  else
    {
    smallWindow = window.open("","fenster_v","left=20,top=20");
    smallWindow.focus();
    }
  smallWindow.document.write("<HTML><HEAD><TITLE>"+bild+"</TITLE></HEAD>");
  smallWindow.document.write("<BODY bgcolor=\"#000000\"");
  smallWindow.document.write("<center><img src=\"../Bilder/"+bild+"\"></center>");
  smallWindow.document.write("</BODY></HTML>");
  smallWindow.document.close();
}


