<!--

datum = new Date();
jahr = datum.getYear();
monat = datum.getMonth();
tag = datum.getDate()


if (jahr == 2001 && monat == 2 && tag == 21)
{
  window.setTimeout('display_popup()', 7000);
}



function display_popup()
 {
  var info_window;
  info_window = window.open("","Fenster","width=450,height=100");
  info_window.document.open("text/html");
  info_window.document.bgColor = "#E9F1F1";
  info_window.document.write("<HTML><HEAD><FRAMESET cols=\"100%, *\" border=\"0\"><FRAME name=\"popup_window\" src=\"popup.html\" scrolling=\"no\" noresize></FRAMESET></HEAD></HTML>");
  // info_window.setTimeout('window.close()', 5000);
  return;
 }
// -->