/*Write out the sidebar for pages that are one level down from the root folder.*/
function SideBar(NoHRef)
{
  document.write("<H3>Quick Links</H3>");
  document.write('<P><a href="../index.html">Home Page</a>');
  WriteOut("../BadPets/index.html","Bad Pets Lists",(NoHRef == 1));
  WriteOut("../CatHumor/CatLinks.html","Cat Humour",(NoHRef == 2));
  WriteOut("../DogHumor/DogLinks.html","Dog Humour",(NoHRef == 3));
  WriteOut("../MiscPetHumor/MiscLinks.html","Other Pet Humour",(NoHRef == 4));
  WriteOut("../Humor/index.html","Misc Humour Page",(NoHRef == 5));
  WriteOut("../Diplomacy/index.html","Diplomacy",(NoHRef == 6));
  WriteOut("../Documents/index.html","Non-Humourous Docs",(NoHRef == 7));
}

function WriteOut(FileName,Caption,UseHRef)
/*Write out either the Caption with no HREF or caption and URL.*/
{
  if(UseHRef)
    document.write("  <P>" + Caption);
  else
    document.write('  <P><A href="' + FileName + '">' + Caption + '</A>');
}
