/*window.defaultStatus="AARCS "

if (parent.frames.length > 0)
  parent.location.replace(self.location.href);
function setExternalLinks() {
  if ( !document.getElementsByTagName ) {
    return null;
  }

  var anchors = document.getElementsByTagName( "a" );
  for ( var i = 0; i < anchors.length; i++ ) {
    var anchor = anchors[i];
    if ( anchor.getAttribute( "href" ) && anchor.getAttribute( "rel" ) == "external" ) {
      anchor.setAttribute( "target", "_blank" );
    }
  }
if ( a.getAttribute ( "href" ) &&
        !a.getAttribute ( "tabindex" ) )
    {
      a.onfocus = function ()
      {
        this.blur ();
      }
    }
}






//if the browser is IE4+
document.onselectstart=new Function ("return false")

//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}


*/


function externalLinks ()
{
  if ( !document.getElementsByTagName )
    return;

  var anchors = document.getElementsByTagName ( "a" );
  var google = document.getElementsByTagName ( "form" );

  for ( var i = 0; i < anchors.length; i++ )
  {
    var anchor = anchors[i];

    if ( anchor.getAttribute ( "href" ) &&
         anchor.getAttribute ( "rel" ) == "external" )
         anchor.target = "_blank";
  }
}

function blurLinks() {
  for(var i=0; i < document.links.length; i++) {
  document.links[i].onfocus =  document.links[i].blur;
  }
}