<!-- Begin

image1 = new Image();
image1.src = "img/about.png";

image2 = new Image();
image2.src = "img/resume.png";

image3 = new Image();
image3.src = "img/projects.png";

if (document.images) {            // Active Images
            img1on = new Image();      
            img1on.src = "img/aboutH.png"; 
            img2on = new Image(); 
            img2on.src = "img/projectsH.png";  
            img3on = new Image();
            img3on.src = "img/resumeH.png";
         
            img1off = new Image(); 
            img1off.src = "img/about.png"; 
            img2off = new Image();          
            img2off.src = "img/projects.png"; 
            img3off = new Image();
            img3off.src = "img/resume.png";
        }

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}
         
// Function to 'deactivate' images.
         
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// Function to open new browser window
function openBrWindow (Adresse) {
  MeinFenster = window.open(Adresse, "", "width=600,height=150,scrollbars=no");
  MeinFenster.focus();
}

// Function to open new browser window with scrollbars
function openBrWindowSb (Adresse) {
  MeinFenster = window.open(Adresse, "", "width=600,height=500,scrollbars=yes");
  MeinFenster.focus();
}


// End -->

