    function getFooterStr() {
    	//Fragments for the individual links found in the foooter.
    	// ...Ref is the anchor, of course.
    	// ...Text is the displayed text.
    	var homeRef = '<a href="http://RichardWalloch.com';
    	var homeText = 'Home/Resume';
    	var blankText = ' &nbsp;&nbsp;';
    	var writingRef = '/CreativeWriting/CreativeWriting.html'
    	var writingText = 'Creative Writing';
    	//var resumeRef = '/Resume/Resume.html';
    	//var resumeText = 'Resume';    
    	//var tutorialRef = '/tutorial/htmlTags/htmlTags';
    	//var tutorialText = 'HTML Tutorial';
    	var petsRef = '/PetPage/PetPageMain.html';
    	var petsText = 'Pet Page';
    	var endAnchor = '</a>';
    	
    	//Tells the browser to overwrite the current page,
    	//rather than opening a new page or tab.
    	//This fragment also closes the anchor tab.
    	var targetRef = '" target="_top"> ';
    	
    	//Builds the anchor and the displayed text for each link in the footer.
    	var homeStr = homeRef.concat(targetRef).concat(homeText).concat(endAnchor).concat(blankText);
    	var writingStr = homeRef.concat(writingRef).concat(targetRef).concat(writingText).concat(endAnchor).concat(blankText);
    	//var resumeStr = homeRef.concat(resumeRef).concat(targetRef).concat(resumeText).concat(endAnchor).concat(blankText);
    	//var tutorialStr = homeRef.concat(tutorialRef).concat(targetRef).concat(tutorialText).concat(endAnchor).concat(blankText);
    	var petsStr = homeRef.concat(petsRef).concat(targetRef).concat(petsText).concat(endAnchor).concat(blankText);
    	
    	//Concatinates the individual links into a single footer.
    	//var footerStr = homeStr.concat(writingStr).concat(tutorialStr).concat(petsStr);
    	var footerStr = homeStr.concat(writingStr).concat(petsStr);
    	return footerStr;
    }


