var openBilligWindow = null;

function open_aktion(bilddatei)
{
  if (openBilligWindow && !openBilligWindow.closed)
  {
    openBilligWindow.close();
  }
  // Die Position des Fensters wird über die Auflösung 
  // des Bildschirm ermittelt - daraus berechnet sich dann
  // die XY-Position der linken oberen Ecke.
  properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,";
  openBilligWindow = window.open('','openBilligWindow','top=10,left=10,width=450,height=338',properties);
  openBilligWindow.document.open();
  openBilligWindow.document.write('<html><head><style type="text/css"><!--body { margin-top:-10px; margin-left:-10px; }//--></style><title>Hinweis</title></head><body text="#000000" link="#000000" vlink="#000000" alink="#000000" background="images/yelbalk.gif" TOPMARGIN="0"><img SRC="'+bilddatei+'"></body></html>');
  openBilligWindow.document.close()
  openBilligWindow.focus();
}

function doopenBilligWindow()
{
  var date = new Date()
  var now = new Date()

  this.month = now.getMonth()
  this.day   = now.getDay()

  if (date.getMonth() == 22222) {      // Oster-Aktion  1.3. - 31.3.
    if (date.getDate() <= 30) {  
      open_aktion('images/oster-aktion2.gif');
    }
  }
  if (date.getMonth() == 3) {      // April-Aktion  1.4. - 26.4.
    if (date.getDate() <= 25) {  
      open_aktion('images/april-aktion.gif');
    }
  }
  if (date.getMonth() == 11) {      // Advent-Aktion  1.12. - 24.12.
    if (date.getDate() <= 23) {  
      open_aktion('images/advent-aktion.gif');
    }
  }
}
