window.onload = initPage;  
// Make sure that no other javscripts assign a fuction to window.onload
// There can be only one window.onload at a time

function initPage() {
  initPopupLinks();
  // place here any other code you wish to run when the page loads.
}

function initPopupLinks()
{
  if (!document.getElementsByTagName) return true;
  var pageLinks = document.getElementsByTagName("a");
  for (var i = 0; i < pageLinks.length; i++) 
  {
    if (((pageLinks[i].className != null) && 
         (pageLinks[i].className != "")) ||
        ((pageLinks[i].parentNode.className != null) && 
         (pageLinks[i].parentNode.className != "")))
    {
      var linkClass = " " + pageLinks[i].className + " ";
      if ((linkClass == "  ") && (pageLinks[i].parentNode.className != ""))
      {
        linkClass = " " + pageLinks[i].parentNode.className + " ";
      }
      for (var theKey in popupLinkConfig) 
      {
        if (linkClass.indexOf(" " + theKey + " ") > -1)
        {
          if ((pageLinks[i].target == "") || (pageLinks[i].target == null))
          {
            pageLinks[i].target = (popupLinkConfig[theKey][0] != "") ? popupLinkConfig[theKey][0] : theKey;
          }
          pageLinks[i].settings = popupLinkConfig[theKey][1];
          pageLinks[i].onclick = popUp;
        }
      }
    }
  }
  return true;
}



function popUp()
{
  newWin = window.open(this.href, this.target, this.settings);
  newWin.focus();
  return false;
} 
var popupLinkConfig = new Array;
// Delete/copy/modify the following lines to configure your popup windows.
// usage: <a href="../History/Guides and Pioneers_173.htm" class="popup500x500">

popupLinkConfig["popup350x250"] = new Array ( "", "width=350,height=250,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x300"] = new Array ( "", "width=350,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x350"] = new Array ( "", "width=350,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x400"] = new Array ( "", "width=350,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x450"] = new Array ( "", "width=350,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x500"] = new Array ( "", "width=350,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x550"] = new Array ( "", "width=350,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x600"] = new Array ( "", "width=350,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup350x650"] = new Array ( "", "width=350,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup400x300"] = new Array ( "", "width=400,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup400x400"] = new Array ( "", "width=400,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup400x650"] = new Array ( "", "width=400,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup450x300"] = new Array ( "", "width=450,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup450x350"] = new Array ( "", "width=450,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup450x700"] = new Array ( "", "width=450,height=700,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");

popupLinkConfig["popup450x750"] = new Array ( "", "width=450,height=750,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup450x800"] = new Array ( "", "width=450,height=800,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x300"] = new Array ( "", "width=500,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x350"] = new Array ( "", "width=500,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x375"] = new Array ( "", "width=500,height=375,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x400"] = new Array ( "", "width=500,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x450"] = new Array ( "", "width=500,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x500"] = new Array ( "", "width=500,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x550"] = new Array ( "", "width=500,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x600"] = new Array ( "", "width=500,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x650"] = new Array ( "", "width=500,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x800"] = new Array ( "", "width=500,height=800,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x700"] = new Array ( "", "width=500,height=700,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup500x900"] = new Array ( "", "width=500,height=900,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");

popupLinkConfig["popup550x300"] = new Array ( "", "width=550,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x350"] = new Array ( "", "width=550,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x400"] = new Array ( "", "width=550,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x450"] = new Array ( "", "width=550,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x500"] = new Array ( "", "width=550,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x550"] = new Array ( "", "width=550,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x600"] = new Array ( "", "width=550,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup550x650"] = new Array ( "", "width=550,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x350"] = new Array ( "", "width=600,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x400"] = new Array ( "", "width=600,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x450"] = new Array ( "", "width=600,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x500"] = new Array ( "", "width=600,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x550"] = new Array ( "", "width=600,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x600"] = new Array ( "", "width=600,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x650"] = new Array ( "", "width=600,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x700"] = new Array ( "", "width=600,height=700,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x750"] = new Array ( "", "width=600,height=750,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup600x800"] = new Array ( "", "width=600,height=800,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x350"] = new Array ( "", "width=650,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x400"] = new Array ( "", "width=650,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x450"] = new Array ( "", "width=650,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x500"] = new Array ( "", "width=650,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x550"] = new Array ( "", "width=650,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x600"] = new Array ( "", "width=650,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup650x650"] = new Array ( "", "width=650,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup700x300"] = new Array ( "", "width=700,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup700x300"] = new Array ( "", "width=700,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup700x600"] = new Array ( "", "width=700,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup700x650"] = new Array ( "", "width=700,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup750x350"] = new Array ( "", "width=750,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup750x400"] = new Array ( "", "width=750,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup750x550"] = new Array ( "", "width=750,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup750x600"] = new Array ( "", "width=750,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup750x650"] = new Array ( "", "width=750,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup750x700"] = new Array ( "", "width=750,height=700,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x350"] = new Array ( "", "width=800,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x400"] = new Array ( "", "width=800,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x550"] = new Array ( "", "width=800,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x600"] = new Array ( "", "width=800,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x800"] = new Array ( "", "width=800,height=800,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x850"] = new Array ( "", "width=800,height=850,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup800x900"] = new Array ( "", "width=800,height=900,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");

popupLinkConfig["popup850x350"] = new Array ( "", "width=850,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup850x800"] = new Array ( "", "width=850,height=800,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup850x550"] = new Array ( "", "width=800,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup850x600"] = new Array ( "", "width=850,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup850x650"] = new Array ( "", "width=850,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x350"] = new Array ( "", "width=900,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x450"] = new Array ( "", "width=900,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x500"] = new Array ( "", "width=900,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x550"] = new Array ( "", "width=900,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x600"] = new Array ( "", "width=900,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x650"] = new Array ( "", "width=900,height=650,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup900x750"] = new Array ( "", "width=900,height=750,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");

popupLinkConfig["popup900x850"] = new Array ( "", "width=900,height=850,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
// popupLinkConfig["popup650x600"] = new Array ( "", "width=650,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
// popupLinkConfig["popup650x600"] = new Array ( "", "width=650,height=600,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x300"] = new Array ( "", "width=950,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x350"] = new Array ( "", "width=950,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x400"] = new Array ( "", "width=950,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x450"] = new Array ( "", "width=950,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x500"] = new Array ( "", "width=950,height=500,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x550"] = new Array ( "", "width=950,height=550,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x750"] = new Array ( "", "width=950,height=750,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup950x850"] = new Array ( "", "width=950,height=850,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup1000x300"] = new Array ( "", "width=1000,height=300,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup1000x350"] = new Array ( "", "width=1000,height=350,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup1000x400"] = new Array ( "", "width=1000,height=400,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup1000x450"] = new Array ( "", "width=1000,height=450,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup1000x800"] = new Array ( "", "width=1000,height=800,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");

popupLinkConfig["popup1000x850"] = new Array ( "", "width=1000,height=850,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
popupLinkConfig["popup1000x900"] = new Array ( "", "width=1000,height=900,toolbar=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes");
// popupLinkConfig["glossary"] = new Array ( "help", "width=550,height=350,resizable=no,scrollbars=no");