var phraseCount = 0;
phraseCount = 5;
var phrases = new Array(phraseCount);
phrases[0] = "<p>These CanMEDS Roles have been developed over more than twenty years beginning with the experiences and needs of citizens and health care consumers</p><a href=\"Canmeds-intro-objectives.jsp\" class=\"learnMore\">Learn More</a>";
phrases[1] = "<p>'The Practice of medicine is an art, based on science.'-</p><a href=\"canmeds-introduction-canmedsandyou.jsp\" class=\"learnMore\">Learn More</a>";
phrases[2] = "<p></p><a href=\"canmeds-introduction-canmedsandyou.jsp\" class=\"learnMore\">Learn More</a>";
phrases[3] = "<p>CanMEDS is an initiative to improve patient care</p><a href=\"CanMEDS-intro-background-01.jsp\" class=\"learnMore\">Learn More</a>";
phrases[4] = "<p>'Education is a lifelong process, in which the student can make only a beginning during his college course'</p><a href=\"Canmeds-intro-conclusion.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';   }
}

