//javascript File (z_includes\footernav.js) for virtual footer text navigation
//Update this document only to change the footer navigation (text) on site

function printVirtualFooterNav( ) {
document.write('<table width="98%" border="0" cellspacing="0" cellpadding="5">');
document.write('<tr>');
document.write('<td align="left" valign="top" width="33%" class="footer">');
document.write('ShoreGood Water Company<br />');
document.write('101 Frank M. Adams Industrial Way<br />');
document.write('Federalsburg, MD 21632<br />');
document.write('</td>');
document.write('<td align="center" valign="top" width="33%" class="footer">');
document.write('Copyright 2010 ShoreGood Water Company<br />');
document.write('All Rights Reserved.<br />');
document.write('</td>');
document.write('<td align="right" valign="top" width="33%" class="footer">');
document.write('PH: 410-754-5888<br />');
document.write('Fax: 410-754-8899<br />');
document.write('Email: <a href="mailto:info@shoregoodwater.com?SUBJECT=Email from ShoreGoodWater.com" style="color:#95CAFF">info@shoregoodwater.com</a><br />');
document.write('</td>');
document.write('</tr>');
document.write('<td height="20">&nbsp; ');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
}
