/*Write out the sidebar for the Bad Pets pages. July 31, 2009.
  NoHRef is a number that indicates which Bad Pets page is
  the current one, to which no hyperlink is required.*/
function SideBar(NoHRef)
{
  document.write("<H3>Quick Links</H3>");
  document.write('<P><a href="../../index.html">Home Page</a>');
  document.write('<P><a href="../../BadPets/index.html">Bad Pets Lists</a>');
  document.write('<P><a href="../../CatHumor/CatLinks.html">Cat Humour</a>');
  document.write('<P><a href="../../DogHumor/DogLinks.html">Dog Humour</a>');
  document.write('<P><a href="../../MiscPetHumor/MiscLinks.html">Other Pet Humour</a>');
  document.write('<P><a href="../index.html">Misc Humour Page</a>');
  WriteOut("../Class/index.html","School-Related",(NoHRef == 1));
  WriteOut("../Dumb/index.html","Human Stupidity",(NoHRef == 2));
  WriteOut("../Kids/index.html","Kids, Men, Women",(NoHRef == 3));
  WriteOut("../Jokes/index.html","Jokes",(NoHRef == 4));
  WriteOut("../Lists/index.html","Lists",(NoHRef == 5));
  WriteOut("../LongLists/index.html","Long Lists",(NoHRef == 6));
  WriteOut("../Misc/index.html","Miscellaneous",(NoHRef == 7));
  WriteOut("../PunDictionary/index.html","Pun Dictionary",(NoHRef == 8));
  WriteOut("../Rednecks/index.html","Rednecks",(NoHRef == 9));
  WriteOut("../Religion/index.html","Religion",(NoHRef == 10));
  WriteOut("../Tech/index.html","Star Trek & Tech",(NoHRef == 11));
  WriteOut("../Virals/index.html","Viral E_Mails",(NoHRef == 12));
  WriteOut("../Work/index.html","Work",(NoHRef == 13));
  document.write('<P><a href="../../Diplomacy/index.html">Diplomacy</a>');
  document.write('<P><a href="../../Documents/index.html">Misc Documents</a>');
}

function WriteOut(FileName,Caption,UseHRef)
/*Write out either the Caption with no HREF or caption and URL.*/
{
  if(UseHRef)
    document.write("  <P Class=\"indent\">" + Caption);
  else
    document.write('  <P Class="indent"><A href="' + FileName + '">' + Caption + '</A>');
}
