function neuesfenster(datei) {
  nw = window.open(datei,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=n0,width=600,height=400,left=20,top=20');
  setTimeout('nw.focus()', 300);
}

function neuesfenster640(datei) {
  nw = window.open(datei,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=n0,width=640,height=480,left=0,top=0');
  setTimeout('nw.focus()', 300);
}

function neuesfenster640640(datei) {
  nw = window.open(datei,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=n0,width=640,height=640,left=0,top=0');
  setTimeout('nw.focus()', 300);
}

function neuesfenster800(datei) {
  breite=datei.width
  hoehe=datei.height
  nw = window.open(datei,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=n0,width=840,height=640,left=0,top=0');
  setTimeout("nw.resizeTo(nw.document.images[0].width , nw.document.images[0].height );", 300);
}

function datum_de() {
  datum = new Date();
  wochentag = new Array("Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag");
  document.write("für " + wochentag[datum.getDay()] + ", den " + datum.getDate() + "." + (datum.getMonth() + 1) + "." + datum.getYear());
}

function datum_en() {
  datum = new Date();
  wochentag = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  document.write("for " + wochentag[datum.getDay()] + ", " + datum.getMonth() + " " + (datum.getDate() + 1) + " " + datum.getYear());
}


