  
function doExternalLink()
  {
    var msg = 'Third Party Link Disclaimer\n\n';
    msg += 'You have asked to leave The First National Bank of Ipswich\'s website.\n'
    msg += 'The Bank assumes no responsibility for the content, privacy policy, or security policy\n of the website you are about to access.\n\n';
    msg += 'Do you wish to continue?'
    
    return (confirm(msg))
  }



if (document.getElementsByTagName)
  {
    var docLinkArray = document.getElementsByTagName("A");
    var thisLink
    for (i = 0; i < docLinkArray.length; i++)
      {
        thisLink = docLinkArray[i]
        if (thisLink.className.match(/popup/) || thisLink.href == 'popup.cfm')
          {
            thisLink.href = thisLink.href.replace(/sp.cfm/,'popup.cfm')
            thisLink.onclick = function(){popWindow(this.href,500,500);return false}
          }
        if (thisLink.className.match(/external/))
          {
            thisLink.onclick = doExternalLink
          }
      }
  }//end, object check