<!--
var prodWindowHandle;
var sampWindowHandle;
var instrucWindowHandle;

if (document.images) {            // Active Images
            refugewebsiteon = new Image();      
            refugewebsiteon.src = "images/button_down_refugewebsite.jpg";

            friendswebsiteon = new Image();      
            friendswebsiteon.src = "images/button_down_friendswebsite.jpg";
			
            printon = new Image();      
            printon.src = "images/button_down_print.jpg";
			
			volunteeron = new Image();      
            volunteeron.src = "images/button_down_volunteer.jpg";
			
			refugewebsiteoff = new Image();      
            refugewebsiteoff.src = "images/button_refugewebsite.jpg";

            friendswebsiteoff = new Image();      
            friendswebsiteoff.src = "images/button_friendswebsite.jpg";
			
			printoff = new Image();      
            printoff.src = "images/button_print.jpg";
			
			volunteeroff = new Image();      
            volunteeroff.src = "images/button_volunteer.jpg";
}

// 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");
        }
}

function MM_openSampleWindow(theURL,features) { //v2.0
  if (sampWindowHandle != null) {
  	if (!sampWindowHandle.closed) {
		sampWindowHandle.location.href = theURL;
	}
	else {
		sampWindowHandle = window.open(theURL,"sampWindow",features);
	}
  }
  else {
  	sampWindowHandle = window.open(theURL,"sampWindow",features);
  }
  sampWindowHandle.focus();
}

function MM_openProductWindow(theURL,features) { //v2.0
  if (prodWindowHandle != null) {
  	if (!prodWindowHandle.closed) {
		prodWindowHandle.location.href = theURL;
	}
	else {
		prodWindowHandle = window.open(theURL,"prodWindow",features);
	}
  }
  else {
  	prodWindowHandle = window.open(theURL,"prodWindow",features);
  }
  prodWindowHandle.focus();
}

function MM_openInstrucWindow(theURL,features) { //v2.0
  if (instrucWindowHandle != null) {
  	if (!instrucWindowHandle.closed) {
		instrucWindowHandle.location.href = theURL;
	}
	else {
		instrucWindowHandle = window.open(theURL,"instrucWindow",features);
	}
  }
  else {
  	instrucWindowHandle = window.open(theURL,"instrucWindow",features);
  }
  instrucWindowHandle.focus();
}

function MM_closeBrWindow() { //v2.0
  window.close();
}

// 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);

// -->

