




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(15);

dykText[0] = "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[1] = "80% of AmLaw 100 use InterAction";
dykText[2] = "Our customers include 94% of Fortune 500 companies and the top 100 US law firms";
dykText[3] = "CaseMap is utilized by the United Nations for all criminal trials conducted in the Hague.";
dykText[4] = "LexisNexis employs over 13,000 people in more than 20 countries who serve customers in more 100 countries";
dykText[5] = "LexisNexis Time Matters and Billing Matters won 2006 Law Technology News Awards";
dykText[6] = "In the year 2007, LexisNexis employees gave more than 6,000 days to support important causes in their communities around the globe";
dykText[7] = "With LexisNexis, you gain access to billions of documents and a commitment to your research efforts ";
dykText[8] = "Nexis offers access to over 12,000 sources (including The Age, The Sydney Morning Herald, Lawyers Weekly, The Daily Telegraph and The Australian)";
dykText[9] = "Law PreDiscovery processes 6,000-10,000 documents per hour ";
dykText[10] = "Concordance is used by 65,000 litigators in the US";
dykText[11] = "95%of the AMLaw 100 use CaseMap";
dykText[12] = "Concordance handles over 33.5 million documents per database";
dykText[13] = "Concordance can have 128 databases open simultaneously with no loss in performance";
dykText[14] = "CaseMap is the only litigation software tool of its kind.";


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() * 15);
    obj.innerHTML = dykText[index];
  }
}


