<!--

function toc(page_id)
{
  var result;
  var url_pre;
  result = "<I>Site Navigation: </I> ";
  url_pre = "../";
  if (page_id == 0) url_pre = "";
  if (page_id != 0) result = result + "<font size=\"+2\"><b><a href=\"" + url_pre + "\">[Home]</a></b></font> ";
  // if (page_id != 1) result = result + "<a href=\"" + url_pre + "Bio/" + "\">[Autobiography]</a> ";
  if (page_id != 2) result = result + "<a href=\"" + url_pre + "Bisexual/" + "\">[Bisexuality]</a> ";
  if (page_id != 3) result = result + "<a href=\"" + url_pre + "Chat/" + "\">[Chat&nbsp;Room]</a> ";
  if (page_id != 1) result = result + "<a href=\"" + url_pre + "Bio/#Chris" + "\">[Chris]</a> ";
  // if (page_id != 5) result = result + "<a href=\"" + url_pre + "College/" + "\">[College&nbsp;Life]</i> ";
  // if (page_id != 6) result = result + "<a href=\"" + url_pre + "Columbus/" + "\">[Columbus]</a> ";
  // if (page_id != 4) result = result + "<a href=\"" + url_pre + "Comics/" + "\">[Comics]</a> "
  // if (page_id != 7) result = result + "<a href=\"" + url_pre + "Friends/" + "\">[Friends]</a> ";
  // if (page_id != 8) result = result + "<a href=\"" + url_pre + "Issues/" + "\">[Issues]</a> ";
  // if (page_id != 1) result = result + "<a href=\"" + url_pre + "Bio/#Kat" + "\">[Kat]</a> ";
  if (page_id != 10) result = result + "<a href=\"" + url_pre + "Nudist/" + "\">[Nudism]</a> ";
  // if (page_id != 11) result = result + "<a href=\"" + url_pre + "PopCulture/" + "\">[Pop&nbsp;Culture]</a> ";
  // if (page_id != 12) result = result + "<a href=\"" + url_pre + "Random/" + "\">[Random]</a> ";
  if (page_id != 13) result = result + "<a href=\"" + url_pre + "Roads/" + "\">[Roadgeeking]</a> ";
  // if (page_id != 14) result = result + "<a href=\"" + url_pre + "SimCity/" + "\">[SimCity]</a> ";
  // if (page_id != 15) result = result + "<a href=\"" + url_pre + "ST/" + "\">[Star&nbsp;Trek]</a> ";
  // if (page_id != 16) result = result + "<a href=\"" + url_pre + "TT/" + "\">[Transport&nbsp;Tycoon]</a> ";
  document.writeln(result);
}

function h2(heading_title, heading_name)
{
  document.writeln("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr>");
  document.writeln("<td class=\"h2\"><H2><A name=\"" + heading_name + "\"></A>" + heading_title + "</td></H2>");
  document.writeln("<td width=\"100%\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"2\"><tr>");
  document.writeln("<td class=\"line\"></td>");
  document.writeln("</tr></table></td>");
  document.writeln("</tr></table>");
}

function datecalc(when, punctuation)
{
  var today = new Date();
  var elapsed = (today - when) / 1000;
  var units = " seconds";
  var direction = " ago";
  if (elapsed < 0) { elapsed = 0 - elapsed; direction = " in the future"; }
  if (elapsed > 120) { elapsed = elapsed / 60; units = " minutes"; 
  if (elapsed > 120) { elapsed = elapsed / 60; units = " hours"; 
  if (elapsed > 48) { elapsed = elapsed / 24; units = " days"; 
  if (elapsed > 30) { elapsed = elapsed / 30.436875; units = " months"; 
  if (elapsed > 12) { elapsed = elapsed / 12; units = " years"; }}}}}
  document.writeln(elapsed.toFixed(1) + units + direction + punctuation);
}
//-->
