
  var popUpWin = '';
  var describeIt = '';
  var picture = '';
  var winFeatures = '';

  function makePopUpWin(pic,wide,high,text) {
   var tall = high + 130  // adjust for spacing to border above and below picture
   var side = wide + 40  // adjust for spacing to border on sides of picture
   describeIt = text
   picture = pic
  if (popUpWin && !popUpWin.closed) {
    popUpWin.close();
   }
     popUpWin = eval("window.open('blank.html','newWin',',height="+tall+",width="+side+"')");
     if (!popUpWin.opener) popUpWin.opener = self;
  }

  function update() {
     popUpWin.document.open();
     // content for the popup window is defined here
     popUpWin.document.write("<html><head><title>Folker 4/2006</title></head>");
     popUpWin.document.write("<body BGCOLOR='#adafcf' background='../clips/bg-n.gif'><center><h2><font face='Arial,Helvetica'>" + describeIt + "</font></h2><p>");
     popUpWin.document.write("<img src=" + picture + "><p>");
     popUpWin.document.write("<a href='#' onClick='self.close()'>");
     popUpWin.document.write("<font face='Arial,Helvetica'>zur&uuml;ck</font></a></center></body></html>");
     popUpWin.document.close();
  }
