addOnLoadEvent_dyk(rDidYouKnow);


function addOnLoadEvent_dyk(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

var dykText = new Array(18);

dykText[0] = "With LexisNexis, you gain access to billions of documents and a commitment to your investigative efforts.";
dykText[1] = "LexisNexis employs over 13,000 people in more than 20 countries who serve customers in more than 100 countries.";
dykText[2] = "LexisNexis is one of the top 13 background check screening companies in the U.S. - Human Resource Outsourcing (HRO) Today";
dykText[3] = "In 1973, LexisNexis developed the world's first commercial, full-text search and retrieval engine used for legal research.";
dykText[4] = "LexisNexis Time Matters and Billing Matters won 2006 Law Technology News Awards.";
dykText[5] = "LexisNexis received the Buyer's Choice Award based on client response, noting our outstanding turnaround times, thoroughness of search results and ease of use";
dykText[6] = "LexisNexis can help predict the likelihood that a consumer will become delinquent in the next 18 months";
dykText[7] = "Total Litigator has the Web's largest collection of investigative tools and resources.";
dykText[8] = "8 out of 10 corporate counsel use Martindale-Hubbell in their decision to select outside counsel.";
dykText[9] = "Lawyers.com is the most comprehensive and trusted resource for identifying qualified legal counsel.";
dykText[10] = "CaseMap is utilized by the United Nations for all criminal trials conducted in the Hague.";
dykText[11] = "InstantID is the only verification and validation solution endorsed by the American Bankers Association.";
dykText[12] = "Our solution helps you comply with Do Not Call and Do Not Mail regulations.";
dykText[13] = "80% of AmLaw 100 use InterAction";
dykText[14] = "Total Litigator is endorsed by NITA as \"the best option for litigators\"";
dykText[15] = "You can get counts and lists within minutes at our self-serve website, ClickData.";
dykText[16] = "We increase the number of deliverable records by more than 3-4 times compared to NCOA processing alone.";
dykText[17] = "Our customers include 94% of Fortune 500 companies and the top 100 U.S. law firms";


function rDidYouKnow() {
  var obj;
  //use different techniques to get the object for browser compatibilities
  if (document.all) {
    obj = document.all["didyouknow_text"];
  }
  else if (document.getElementById) {
    obj = document.getElementById("didyouknow_text");
  }
  else if (document.layers) {
    obj = document.layers["didyouknow_text"];
  }

  if (obj) {
    var index = Math.floor(Math.random() * 18);
    obj.innerHTML = dykText[index];
  }
}

