function NeuesFenster2(DateiName, Weite, Hoehe, ScrollBar, Resizable)
{
  var strFenster = "width=" + Weite +",height=" + Hoehe + ",left=0,top=0";

  if (ScrollBar == "True")
  {
    strFenster = strFenster + ",scrollbars=yes";
  }

  if (Resizable == "True")
  {
    strFenster = strFenster + ",resizable= yes";
  }

  new_window = window.open(DateiName, "_blank", strFenster);
  new_window.focus();
  return;

}
function DatumZeigen(){
var now = new Date();
var yr = now.getYear();
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
if(mName==1) Month="Januar";
if(mName==2) Month="Februar";
if(mName==3) Month="März";
if(mName==4) Month="April";
if(mName==5) Month="Mai";
if(mName==6) Month="Juni";
if(mName==7) Month="Juli";
if(mName==8) Month="August";
if(mName==9) Month="September";
if(mName==10) Month="Oktober";
if(mName==11) Month="November";
if(mName==12) Month="Dezember";
// String to display current date.
var todaysDate =(" "
//+ Day
//+ ", "
+ dayNr
+ ". "
+ Month
+ " "
+ yr
+ "<BR>");
document.open();
document.write("<CENTER><STRONG style='color:#E8965A; font-size: 13px; font-family: Arial, Helvetica,Geneva, Swiss,SunSans-Regular' >"+"Bad D&uuml;rkheim, "+todaysDate+"</STRONG></CENTER>"); // Hier kannst Du das Aussehen ändern!
}

function suche_loeschen()
{
  sucheall.suchstring.value="";
  return true;
}
