
  function mout(i,n) {
    i.src = Normal[n].src;
  }

  function movr(i,n) {
    i.src = Highlight[n].src;
  }

function newwindow(datei,titel,breite,hoehe)
{
	var optionen;
	var win;
  xpos = screen.availWidth/2 - breite/2;
  ypos = screen.availHeight/2 - hoehe/2;
	optionen = "left=" + xpos + ",top=" + ypos + ",width=" + breite + ",height=" + hoehe + ",scrollbars=no,status=no,toolbar=no,menubar=no";
	win=window.open(datei,'titel',optionen);
}

