window.defaultStatus="TL"

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" );
    }
  }
}





function disabletext(e){
return false
}

function reEnable(){
return true
}

//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";
  }
}