



window.defaultStatus="Solium Consulting Services"



  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" );
    }
  }




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;
  }
}


