
function Gruss()
{
  var gespeichert = "nicht besucht";
  if (document.cookie)
  {
    gespeichert = document.cookie;
  }
  else
  {
    jetzt = new Date();
    var Wert=1
    ablauf = new Date(jetzt.getTime() + 1000*60*60*12); /* 12 Stunden */
/*    ablauf = new Date(jetzt.getTime() + 1000*60*5); */ /* 5 Minuten */
    document.cookie = "Besucht=" +Wert+ ";expires=" + ablauf.toGMTString()+";";
    if (jetzt.getMonth() == 11 || jetzt.getMonth() == 0)
    {
      if (screen.availWidth >= 1200)
      {
        breite = screen.availWidth/2;
        hoehe = screen.availHeight*2/3;
      }
      else
      {
        breite = screen.availWidth*2/3;
        hoehe = screen.availHeight*4/5;
      }

      Pos_x = 165;
      Pos_y = 100;

      Fensterneu=window.open("../aktuell/weihnachten.htm", "Gruss", "width="+breite+",height="+hoehe+",screenX=" + Pos_x + ",screenY=" + Pos_y + ",menubar=no,locationbar=no,status=no,resizable=yes,scrollbars=1,toolbar=0,location=0");
      Fensterneu.focus();
    }
  }
}
