<!--
spacei = new Image();
spacei.src="images/space.gif";

ueber_aus = new Image();
ueber_aus.src = "images/kopf1.gif";
ueber_an = new Image();
ueber_an.src = "images/kopf1mo.gif";

zu_aus = new Image();
zu_aus.src = "images/kopf2.gif";
zu_an = new Image();
zu_an.src = "images/kopf2mo.gif";

von_aus = new Image();
von_aus.src = "images/kopf3.gif";
von_an = new Image();
von_an.src = "images/kopf3mo.gif";

an_aus = new Image();
an_aus.src = "images/kopf4.gif";
an_an = new Image();
an_an.src = "images/kopf4mo.gif";

notiz_aus = new Image();
notiz_aus.src = "images/notiz_bleistift2.gif";
notiz_an = new Image();
notiz_an.src = "images/notiz_bleistift2_mo.gif";

function rein(bild)
{
  var nr;
  // damit die animierten Gifs im NS auch animiert angezeigt werden
  rfsh = new Date() ; rfsh = "?"+rfsh.getTime();
  if(bild=="ueber") {nr="2";}
  if(bild=="zu") {nr="3";}
  if(bild=="von") {nr="4";}
  if(bild=="an") {nr="5";}
  if(bild=="notiz") {nr="'notiz'";}
  //eval("if(document.images["+nr+"]) document.images["+nr+"].src="+bild+"_an.src;");
  eval("if(document.images["+nr+"]) document.images["+nr+"].src="+bild+"_an.src+'"+rfsh+"';");
}

function raus(bild)
{
  var nr;
  rfsh = new Date() ; rfsh = "?"+rfsh.getTime();
  if(bild=="ueber") {nr="2";}
  if(bild=="zu") {nr="3";}
  if(bild=="von") {nr="4";}
  if(bild=="an") {nr="5";}
  if(bild=="notiz") {nr="'notiz'";}
  //eval("if(document.images["+nr+"]) document.images["+nr+"].src="+bild+"_aus.src;");
  if(bild!="notiz"){
    eval("if(document.images["+nr+"]) document.images["+nr+"].src=spacei.src+'"+rfsh+"';");
  }else{
    eval("if(document.images["+nr+"]) document.images["+nr+"].src="+bild+"_aus.src+'"+rfsh+"';");
  }
}
//-->