




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

dykText[0] = "International Sales is currently doing business in over 50 countries";


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

