/*
COPYRIGHT: 2007-2009.
AUTHOR: John Connolly.
PURPOSE: To display footer for all HTML pages
*/



/*
FUNCTION: getFooter()
PURPOSE: To display footer for all HTML pages
*/
function getFooter() { 
document.write('<div class="ofRegFooter ofGridWidth12">');
document.write(' <!-- Start: footer -->');
document.write(' <div class="ofFooter">');
document.write('  <a href="index.htm"><img src="images/companylogoonly.jpg" class="ofFooterLogo" style="width:40px;height:29px;" alt="home link and Clean Irish Water logo" /></a>');
document.write('  <a href="http://nsf.com"><img src="images/nsf-logo.jpg" class="ofFooterLogo" style="width:50px;height:50px;" alt="NSF Home Link and logo" /></a>');
document.write('  <a href="#"><img src="images/WRAS-logo.jpg" class="ofFooterLogo" style="width:50px;height:50px;" alt="WRAS Home Link and logo" /></a>');
document.write('  <a href="#"><img src="images/Water-Quality-logo.jpg" class="ofFooterLogo" style="width:50px;height:50px;" alt="Water Quality Home Link and logo" /></a>');
document.write('  <a href="#"><img src="images/CICS-logo.jpg" class="ofFooterLogo" style="width:50px;height:50px;" alt="CICS Home Link and logo" /></a>');
document.write('  <a href="http://www.paypal.com"><img src="images/paypal-logo.jpg" class="ofFooterLogo" style="width:50px;height:50px;" alt="Paypal Home Link and logo" /></a>');
document.write('  <a href="http://www.epa.ie"><img src="images/epa-logo.gif" class="ofFooterLogo" style="width:50px;height:50px;" alt="EPA Home Link and logo" /></a>');
document.write('  </a> &copy; 2007&#150;2009 Clean Irish Water<br />');

document.write('  All rights reserved<br />');
/*document.write('     <a href="ciw-terms.htm">Terms of Use</a>');*/
/*document.write('     | <a href="ciw-privacy.htm">Privacy</a> ');*/
/*document.write('     |');*/
document.write('  <a href="ciw-security.htm">Security</a>');
document.write('  | <a href="ciw-site-map.htm">Site Map</a>');
document.write(' </div>');
document.write(' <!-- End: footer -->');
document.write('</div>');
}
