function handleExternalLinks() { 
     //var hostName = window.location.hostname;
      var links = document.getElementsByTagName("a");
      for(var i = 0; i < links.length; i++) {
	  if(links[i].href.indexOf(".gov") == -1 && links[i].href.indexOf("10.5.0") == -1 && links[i].href.indexOf("mailto") == -1 && links[i].href.indexOf("eeoc.custhelp.com") == -1  ) {
	    links[i].onclick = function(){
	      return confirm("You are now leaving www.eeoc.gov. EEOC does not endorse the organizations or views represented by any non-Federal government website and takes no responsibility for, and exercises no control over, the accuracy, accessibility, copyright or trademark compliance or legality of the material contained on such sites.");
	    }
	  }
      }
  }

