//function that shows dynamically the footer for the front end pages 
//NOTE: All pages that would use this footer MUST have a div element tag called 'div_dynamic_footer' and must call the ShowFooter() function on the body tag load.
function ShowFooter()
{ 
   var currDate = new Date();
   var year = currDate.getFullYear();
   var footer = "Copyright 2006-" + year + " The NEXT Yellow Directory, All Rights Reserved.  Patent Pending.<br>";
   footer = footer + "<A class='px10' href='default.aspx'>Home</A> | <A class='px10' href='privacy.aspx'>Privacy Statement</A> | <A class='px10' href='usage.aspx'>";
   footer = footer + "Usage Policy</A> | <A class='px10' href='siteReqs.aspx'>Site Requirements</A> | <A class='px10' href='contact.aspx'>Contact Us</A><br>";
   document.getElementById("div_dynamic_footer").innerHTML = footer;
}