var theFooterPathPrefix = "";

function setFooterPathPrefix(pPrefix) {
  theFooterPathPrefix = pPrefix;
}

function makef(){
  var strText = "";

  strText += "<hr align='center' width='50%' noshade color='#000000'>";

  strText += "<p>";

  strText += "<a class='text_link' href='" + theFooterPathPrefix + "index.html'>Home</a> || "; 
  strText += "<a class='text_link' href='" + theFooterPathPrefix + "about.html'>The Registry</a> || ";
  strText += "<a class='text_link' href='" + theFooterPathPrefix + "disclaimer.html'>Report</a> || ";
  strText += "<a class='text_link' href='" + theFooterPathPrefix + "privacy.html'>Privacy</a> || ";
  strText += "<a class='text_link' href='" + theFooterPathPrefix + "conduct.html'>Conduct</a> || ";
  strText += "<a class='text_link' href='" + theFooterPathPrefix + "faq.html'>FAQ</a> || ";
  strText += "<a class='text_link' href='" + theFooterPathPrefix + "contact.html'>Contact Us</a>";														 																			 																			 										 

  strText += "</p>";

  strText += "<p class='footer_tag'>";
  strText += "Copyright &copy;</a> 2005-2007 The Reaction Registry. All rights reserved. ";
  strText += "Revised July 9th, 2007.</p>";
  	
  if (strText != "") {
  	 document.write(strText);
  }
}