




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

dykText[0] = "The war in Iraq and terrorist activities such as 9-11 forced the U.S. to heighten its intelligence on foreign entities.";
dykText[1] = "Among child abductions that end in homicide, 74% are murdered within the first three hours of captivity.";
dykText[2] = "At least 1 in 6 sex offenders do not comply with laws that require them to report their current address to authorities. ";
dykText[3] = "According to the Society of Human Resource Managers, more than 30% of job applicants provide false information on their resumes.";
dykText[4] = "In Fiscal Year 2006, more than $40.5 billion in improper payments were made from federal government programs. ";
dykText[5] = "In 2006, GAO reported the backlog of applicants applying for a federal security clearance was 180,000.";
dykText[6] = "LexisNexis provides customers with access to five billion searchable documents.";
dykText[7] = "Legal documents are filed at an estimated delivery cost of $11 billion with the annual cost of storage exceeding $2.5 billion.";
dykText[8] = "Research indicates that the ROI on Digital Asset Management is between 8:1 to 14:1.";
dykText[9] = "Creative professionals spend an average of 1 out of every 10 hours of their time on file management.";
dykText[10] = "The average creative person looks for a media file 83 times a week and fails to find it 35% of the time.";
dykText[11] = "An average of $8,200 per person per year is spent on file management activities which include searching, verification, organization, back-up and security.";
dykText[12] = "Everyday the amount of data available to decision-makers increases at an exponential rate.  The stakes are high and time is critical within the intelligence field.";
dykText[13] = "Government agencies reported 12,986 cyber security incidents to the U.S. Federal Government last fiscal year, triple the number from two years earlier.";


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

