
function pageFooting(leftContent, centerContent, rightContent) {

 if (leftContent == "default") {leftContentPrint = "<a href='" + topPath + "'>reely.com</a>"}
 else {leftContentPrint = leftContent;}

 if (centerContent == "default") {centerContentPrint = "<span class='copyright'>Copyright &copy; 2012"
						+ ", Darren Reely. All rights reserved.</span>";}
 else {centerContentPrint = centerContent;}

 if (rightContent == "default") {rightContentPrint = "<a href='" + topPath + "contact.html" + "'>Contact Information</a>"}
 else {rightContentPrint = rightContent;}

 document.write("<p>\n");
 document.write("&nbsp;\n");
 document.write("<p>\n");
 document.write("<blockquote>\n");
 document.write("<hr size='1'\n");
 document.write("<center>\n");
 document.write("<table border='0' width='98%'>\n");
 document.write("<tr>\n");
 document.write("   <td class='ftr-left'>" + leftContentPrint + "</td>\n");
 document.write("   <td><center>\n");
 document.write("       " + centerContentPrint + "\n");
 document.write("   </center></td>\n");
 document.write("   <td class='ftr-right'>" + rightContentPrint + "</td>\n");
 document.write("</tr>\n");
 document.write("</table>\n");
 document.write("</center>\n");
 document.write("</blockquote>\n");
 document.write("</p>\n");
}

