<!--

if (document.images) {            // Active Images
            homeon = new Image();      
            homeon.src = "images/home_button_down.gif";

            bioson = new Image();      
            bioson.src = "images/bios_button_down.gif";
			
			calendaron = new Image();      
            calendaron.src = "images/calendar_button_down.gif";

            contacton = new Image();      
            contacton.src = "images/contact_button_down.gif";
			
            listenon = new Image();      
            listenon.src = "images/listen_button_down.gif";
			
            closeon = new Image();      
            closeon.src = "images/close_button_down.gif";

            homeoff = new Image();      
            homeoff.src = "images/home_button.gif";
			
			biosoff = new Image();      
            biosoff.src = "images/bios_button.gif";
			
			calendaroff = new Image();      
            calendaroff.src = "images/calendar_button.gif";

            contactoff = new Image();      
            contactoff.src = "images/contact_button.gif";
			
			listenoff = new Image();      
            listenoff.src = "images/listen_button.gif";
			
			closeoff = new Image();      
            closeoff.src = "images/close_button.gif";
}

// Function to 'activate' images.
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");
        }
}

// Netscape resize bug.
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_openBrWindow(theURL,winName) { //v2.0
  window.open(theURL,winName,'toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=530,height=320');
//	window.open(theURL, winName);
}

function MM_closeBrWindow() { //v2.0
  window.close();
}
// -->
