﻿function showOpts( choice ) {

  info = new Array();
  info["Home"] = "NorthLand Home Page";
  info["Services"] = "Explore some of the services offered by NorthLand";
  info["Links"] = "Helpful links to other aging resources";
  info["FAQs"] = "Some frequently asked questions about NorthLand";
  info["Contact"] = "How to contact us";
  if (document.title == choice){
    document.getElementById("banner").innerHTML = "";
  }
  else {  
    document.getElementById("banner").innerHTML = "<strong>" + info[choice] + "</strong>";
  }  
}

function clearOpts() {
  document.getElementById("banner").innerHTML = "";
} 

function testLnk( choice ) {
  return (document.title != choice);   
} 
