//  Austauschen der Menue-Buttons

g00Norm = new Image(); g00Norm.src = "menue/00.gif";
g00High = new Image(); g00High.src = "menue/01.gif";
g02Norm = new Image(); g02Norm.src = "menue/20.gif";
g02High = new Image(); g02High.src = "menue/21.gif";
g03Norm = new Image(); g03Norm.src = "menue/30.gif";
g03High = new Image(); g03High.src = "menue/31.gif";
g04Norm = new Image(); g04Norm.src = "menue/40.gif";
g04High = new Image(); g04High.src = "menue/41.gif";
g05Norm = new Image(); g05Norm.src = "menue/50.gif";
g05High = new Image(); g05High.src = "menue/51.gif";
g06Norm = new Image(); g06Norm.src = "menue/60.gif";
g06High = new Image(); g06High.src = "menue/61.gif";
g07Norm = new Image(); g07Norm.src = "menue/70.gif";
g07High = new Image(); g07High.src = "menue/71.gif";
g08Norm = new Image(); g08Norm.src = "menue/80.gif";
g08High = new Image(); g08High.src = "menue/81.gif";
g09Norm = new Image(); g09Norm.src = "menue/90.gif";
g09High = new Image(); g09High.src = "menue/91.gif";

function BwNorm(imgName)
{   window.document[imgName].src = eval(imgName + "Norm.src");   }

function BwHigh(imgName)
{   window.document[imgName].src = eval(imgName + "High.src");   }

// end Menue-Buttons


// Fenster Bildergalerie
function openwindow_sr(width,height,url) {
    var left=(screen.width-width-10)/2;
    var top=(screen.height-height-20)/2;
    if (left<0) left=0;
    if (top<0) top=0;
    var options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+width+",height="+height+",left="+left+",top="+top;
    var mypopup = window.open( url ,"popupwindow", options);
    mypopup.moveTo(left, top);
    }
// End Fenster Bildergalerie
