bild01 = new Image(); bild01.src = "../images/but01a.jpg";
bild02 = new Image(); bild02.src = "../images/but02.jpg";
bild03 = new Image(); bild03.src = "images/but01a.jpg";
bild04 = new Image(); bild04.src = "images/but02.jpg";


function bulletchange(id)
{
  document.getElementById(id).src = bild01.src;
}

function bulletback(id)
{
  document.getElementById(id).src = bild02.src;
}


function bulletchangei(id)
{
  document.getElementById(id).src = bild03.src;
}

function bulletbacki(id)
{
  document.getElementById(id).src = bild04.src;
}

function fenster()
{ //alert(name);
  window.open("bluse.html","fenster","width=650,height=600,top=0,left=0,scrolling=yes");
}

function FensterOeffnen (Adresse) {
  Fenster1 = window.open(Adresse,"Zweitfenster","width=650,height=680,top=0,left=0,scrollbars=yes");
  Fenster1.focus();
}