




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

dykText[0] = "That LexisNexis UK publishes 35 magazines weekly, fortnightly, or quarterly?";
dykText[1] = "LexisNexis UK produces 50 CD products and 3,600 updates each year?";
dykText[2] = "In 2007 LexisNexis employees gave more than 6,000 days to support important causes in their communities around the globe?";
dykText[3] = "Some 2,500 external authors help produce our print, CD and Online products?";
dykText[4] = "There are 250,000 users of LNB?";
dykText[5] = "100 loose leaf titles with approximately 450 loose leaf updates are published each year?";
dykText[6] = "Lexis Nexis publishes seven encyclopedic works with monthly updates every year?";
dykText[7] = "30,000 online updates are carried out every year?";
dykText[8] = "That LexisNexis provides services to Premiership football clubs?";
dykText[9] = "20,000 current awareness stories, compiled and written in house, are loaded onto are websites each year?";
dykText[10] = "In the UK, over 60,000 organisations use LexisNexis® services?";
dykText[11] = "LexisNexis<sup>&reg;</sup> products and services are used by all the top law and accountancy firms?";
dykText[12] = "Almost all the local authorities in the UK, including Whitehall departments use LexisNexis<sup>&reg;</sup> products?";
dykText[13] = "All UK universities benefit from our products, as well as more than 10,000 civil servants.";
dykText[14] = "LexisNexis<sup>&reg;</sup> draws on a heritage of almost 200 years?";
dykText[15] = "In the UK, LexisNexis is best known for its trusted legal and tax publishing brands Butterworths and Tolley?";


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

