var phraseCount = 0;
phraseCount = 5;
var phrases = new Array(phraseCount);
phrases[0] = "<p>The Gender and Health Collaborative Curriculum Project (GHCCP) is the work of faculty and students from the six medical schools in the Canadian province of Ontario</p><a href=\"about-projectbackground-02.jsp\" class=\"learnMore\">Learn More</a>";
phrases[1] = "<p>'A gender approach in health, while not excluding the biological factors, considers the critical roles that social and cultural factors and power relations between women and men play in promoting and protecting or impeding health.' </p><a href=\"about-projectbackground-03.jsp\" class=\"learnMore\">Learn More</a>";
phrases[2] = "<p>medical schools, in Canada and internationally, are recognizing their responsibility to graduate physicians who can meet the needs of all members of society</p><a href=\"about-projectbackground-03.jsp\" class=\"learnMore\">Learn More</a>";
phrases[3] = "<p>Gender and Health is about concepts and approaches and understanding that who we are shapes the work we do.</p><a href=\"about-projectbackground-03.jsp\" class=\"learnMore\">Learn More</a>";
phrases[4] = "<p>Funding for the project has been provided by the Ontario Women’s Health Council.</p><a href=\"about-projectteam-01.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';   }
}

