/*
2004-01-08:
  - created (mv)
*/

/*

  usage: include this script at bottom of body to
  force all external links to open in a new window

  <script type="text/javascript" src="/js/blankify.js"></script>
 
*/

if (document.getElementsByTagName)
{
  L = document.getElementsByTagName('a');
  for (i=0; i<L.length; i++)
  {
    if (L[i] && L[i].href && L[i].href.indexOf('http://') == 0 && L[i].href.indexOf('bpfpartners') == -1)
    {
      L[i].target = '_blank';
    }
  }
}