// Popup Disclaimer written to display this little 'warning/disclaimer' whenever someone
// clicks an external link on the website...


// to add it to a link:
// <a href="javascript:externalDisc('http://yoursitehere.com')">Your text here</a>


// werd - to the max!

function externalDisc(site) {
  var w;
	alert('Taylor Bank provides links to external websites for your convenience.  Use of the websites should not be construed as an endorsement or warranty by Taylor Bank of the external websites\' content, since Taylor Bank has no control over the external websites.  You are encouraged to review the linked site\'s privacy and security policies, as they may differ from Taylor Bank\'s.');
  w = window.open(site);
  w.focus();
}
