<!--
// ---------------------------------------
// Purpose - list all the branch locations
// Author  - timothy
// ---------------------------------------
document.write('<BLOCKQUOTE>');
document.write('<A HREF="doc/branches.pdf">');
document.write('Complete List (PDF)</A><BR>');
document.write('<BR><BR>');
for (var i = 1; i <= arrBranch.length - 1; i++) {
  document.write('<A HREF="#" ID="' + i + '" ONCLICK="subBranchAll('+ i +')">');
  document.write('&nbsp;' + arrBranch[i][2] + '&nbsp;</A><BR>');
}
document.write('<A HREF="#" ID="0" ONCLICK="subBranchAll(0)">');
document.write('&nbsp;' + arrBranch[0][2] + '&nbsp;</A><BR>');
document.write('</BLOCKQUOTE>');
//-->

