function test() {
  }




function datetime() {
  var txt=navigator.appVersion;
  var macJ=txt.indexOf("Mac");

  now = new Date ();
  d0=now.getDate();
  if (d0<10) d0="0"+d0;
  d1=now.getMonth()+1;
  if (d1<10) d1="0"+d1;
  d2=now.getFullYear();

  document.write(d0+"."+d1+"."+d2);
  }


function openNoScroll(url,x,y) {
  var newWin=open(url,"neuesFenster","width="+x+",height="+y+",left=10,top=10");
  newWin.focus();
  }



function changeSujet(x,l) {
  var txt="../top/"+x;
  var txttop=txt+"/topc"+l+".htm";
  var txtright=txt+"/right.htm";
  top.xright.location.replace(txtright); 
  top.xtop.location.replace(txttop);
  }
  function changeiSujet(x,l) {
  var txt="../top/"+x;
  var txttop=txt+"/topc"+l+".php";
  var txtright=txt+"/right.htm";
  top.xright.location.replace(txtright); 
  top.xtop.location.replace(txttop);
  }