function writeLinks() {
	<!--	Used to write the links at the bottom of the page.  Using a function so
	//	changes will be easier to implement, i.e., only need to make a change here.
	//
	//	NOTE: This function will not work unless:
	//	1) The file has a ".html" extension.  If a different extension is used, make
	//	the change in the line that sets the value of "flip" and the document.write
	//	statements.
	//	2) All file names have the same name in english and french and end in
	//	"-e.html" or "-f.html"
	//
	//	Variables:
	//	"where" = URL location of the file
	//	"whereArray" = An array that divides the URL into string divided by "/"
	//	"lang" = Will hold a value "e" or "f" to determine which language
	//	the page is written in
	//	"oplang" = Will hold the opposite value of lang
	//	"dot" = The character position of the "." at the end of the file name.
	//	In other words, where the "." appears in ".html"
	//	"name" = A string holding the name of the file from the first character
	//	to the "-", inclusively.
	//	"flip" = A string holding the link of the page in the other language
	//	-->

	var where, dot, lang, oplang, name, flip;

	where = window.location;  //  The location of the file, including file name
	where = where.toString();  //  To ensure this variable is a string value
	whereArray = where.split("/"); // Dividing the URL into an array, divided at "/"
	where = whereArray[whereArray.length-1]; // Sets where to the file name instead of entire URL
	dot = where.indexOf(".html");  // Finds the character number for the "." in ".html"
	lang = where.charAt(dot -1); // Finds if the page is in english or french by checking
				     // the letter between "-" and ".html"
	if (lang=="e") {  oplang="f" }  // Sets the opposite language variable
	if (lang=="f") {  oplang="e" }  // Sets the opposite language variable
	name = where.substring(0,(dot - 1));  // Grabs the name of the file
	flip = name + oplang + ".html";  //  Sets the value of the page in opposite language

	<!-- Writing the links -->
	if (lang=="e") {
document.write('<p class="bottomlinks">'); document.write('<a href="index-e.html">Home</a>&nbsp;|&nbsp;'); 
  document.write('<a href="present-e.html">Program</a>&nbsp;|&nbsp;'); document.write('<a href="xhigh-e.html">About the Symposium</a>&nbsp;|&nbsp;'); document.write('<a href="speakers-e.html">Speakers and Panelists</a>&nbsp;|&nbsp;'); document.write('<a href="how-e.html">How To  for Speakers</a>&nbsp;|&nbsp;'); document.write('<a href="advisory-e.html">Advisory Group</a>&nbsp;|&nbsp;'); document.write('<a href="links-e.html">Links to the Ottawa and Surroundings</a>&nbsp;|&nbsp;'); document.write('<a href="registration-e.html">Registration Form</a>&nbsp;|&nbsp;'); document.write('<a href="contacts-e.html">Contacts</a>&nbsp;|&nbsp;'); 
  document.write('<a href=' + flip + '>Fran&ccedil;ais</a></p>');
	}
	if (lang=="f") {
		document.write('<p class="bottomlinks">'); document.write('<a href="index-f.html">Accueil</a>&nbsp;|&nbsp;'); 
  document.write('<a href="program-f.html">Programme</a>&nbsp;|&nbsp;'); document.write('<a href="xhigh-f.html">Le   Symposium</a>&nbsp;|&nbsp;'); document.write('<a href="speakers-f.html">Conf&eacute;renciers et pan&eacute;listes</a>&nbsp;|&nbsp;'); document.write('<a href="how-f.html">Quelques conseils &agrave; l\'intention des conf&eacute;renciers</a>&nbsp;|&nbsp;'); 
  document.write('<a href="advisory-f.html">Groupe consultatif</a>&nbsp;|&nbsp;'); 
  document.write('<a href="links-f.html">Liens Touristiques Ottawa et les environs</a>&nbsp;|&nbsp;'); 
  document.write('<a href="registration-f.html">Formulaire d\'inscription</a>&nbsp;|&nbsp;'); 
  document.write('<a href="contacts-f.html">Personne-ressource</a>&nbsp;|&nbsp;'); 
  document.write('<a href=' + flip + '>English</a></p>');
	}	
}