var links = new Array(
	"atheism.htm",						"Atheism Quotations",
	"books.htm",						"Books",
	"brownies.html",					"Brownie Recipe",
	"BuffyQuiz.html",					"<i>Buffy<\/i> Trivia Quiz",
	"buttons.htm",						"Buttons",
	"card.htm",							"Calling Card",
	"cheesecake.html",					"Cheesecake Recipe",
	"chocolat.htm",						"Chocolate Store Reviews",
	"chocolat.htm",						"Chocolate Store Reviews",
	"chocdir.htm",						"Chocolate Store Directory",
	"chocdir.htm",						"Chocolate Store Directory",
	"chocguid.htm",						"Chocolate Store Guide",
	"chocguid.htm",						"Chocolate Store Guide",
	"chocind.htm",						"Chocolate Store Index",
	"chocind.htm",						"Chocolate Store Index",
	"coinflip.htm",						"Pi From Coin Flips",
	"dice.htm",							"Intransitive Dice",
	"edp.htm",							"Personal Page",
	"essays.htm",						"Essays",
	"games.htm",						"Games",
	"Germany/Bruxelles.html",			"Brussels",
	"Germany/Dachau.html",				"Dachau",
	"Germany/Heidelberg.html",			"Frankfurt",
	"Germany/Heidelberg.html",			"Heidelberg",
	"Germany/index.html",				"Germany",
	"Germany/Legoland.html",			"Legoland",
	"Germany/London.html",				"London",
	"Germany/SimoneParis.html",			"Paris",
	"Germany/Sparrows.html",			"Ulm Sparrows",
	"granduno.htm",						"Grand Uno",
	"index.htm",						"Site Root",
	"invest.htm",						"Investing",
	"jokes.htm",						"Jokes",
	"mathjoke.htm",						"Math Jokes",
	"MathQuotes.html",					"Math Quotes",
	"molasses.htm",						"Molasses Disaster",
	"monkey.htm",						"Scratch Monkey Story",
	"monty.htm",						"Monty Hall Problem",
	"quotes.htm",						"Quotations",
	"resume.htm",						"Résumé",
	"skydive.htm",						"Skydive",
	"sm64coin.htm",						"<i>Super Mario 64<\/i> Coins",
	"spring.htm",						"Springs and Ropes",
	"Travel/California/index.html",		"California",
	"Travel/Chicago/index.html",		"Chicago",
	"Travel/CrossCountry/index.html",	"Cross-Country Drive",
	"Travel/Europe2006/index.html",		"Europe 2006",
	"Travel/Europe2009/index.html",		"Europe 2009",
	"Travel/Florida/index.html",		"Florida",
	"work/WhatIDo.html",				"What I Do"
);


// Prepared Random Link.
function PRL(prefix)
{
	var i = 2*Math.floor(Math.random() * links.length * .5);

	if (prefix == null)
		prefix = "";

	document.write("<b>Random&nbsp;link:<\/b> <a href=\"" + prefix + links[i]
		+ "\" target=\"_top\">" + links[i+1] + "<\/a>");
}

// Write message about how to cite the current page.
function HowToCiteThisPage(author)
{
	var m = new Array("January", "February", "March", "April", "May", "June",
		"July", "August", "September", "October", "November", "December");
	var dm = new Date(document.lastModified);
	var da = new Date();
	document.write("<h2>How to Cite This Page<\/h2>\n"
		+ "Cite this page as: <dl><dd>" + author + ", &#8220;"
		+ document.title
		+ ",&#8221; <i>Eric Postpischil's Domain<\/i>, "
		+ dm.getUTCDate() + " " + m[dm.getUTCMonth()] + " "
		+ dm.getUTCFullYear()
		+ ", &lt;<tt>"
		+ document.URL.replace(/.*[\/\\]/, "http://edp.org/")
		+ "<\/tt>&gt; accessed "
		+ da.getDate() + " " + m[da.getMonth()] + " "
		+ da.getFullYear()
		+ ".<\/dd><\/dl>");
}
