var phraseCount = 0;
phraseCount = 2;
var phrases = new Array(phraseCount);
phrases[0] = "<p>Gender incorporates both biological and psychosocial aspects of a person’s life experience.</p><a href=\"gender-lens-difference-factors-01.jsp\" class=\"learnMore\">Learn More</a>";
phrases[1] = "<p>We can examine any area of medicine using the Gender Lens Tool.</p><a href=\"gender-lens-case.jsp\" class=\"learnMore\">Learn More</a>";
function didyouknow() {
   if (phraseCount > 0) {
      var pIndex = Math.floor(Math.random()*phraseCount);
      document.write(phrases[pIndex]);
   } else {
      document.write('No phrases found for didyouknow file.');
		document.getElementById('didyouknow-title').style.display='none';		document.getElementById('didyouknow-info').style.display='none';   }
}

