// The Array Function

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// This is where the array of text/images/sounds is created.

ideas = new makeArray(9);
ideas[0] = "<span style='font-size: 120%;'>Healthy Advice programs impact up to 25% of the total U.S. primary care prescribing volume<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Wolters Kluwer Health Interest Q&A, 2006</span>";
ideas[1] = "<span style='font-size: 120%;'>Respondent recall of the Healthy Advice Digital Screens was excellent as 77% recalled seeing the digital information screen.<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Nationwide 2008 Web Survey of 1142 patients who visited primary care physician waiting rooms installed with the Healthy Advice Primary Care Network</span>";
ideas[2] = "<span style='font-size: 120%;'>According to a recent McKinsey report, physicians are seeking more patient education programs than ever before.<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: McKinsey. Referenced: Next Generation Pharmaceutical Magazine &quot;Push or pull: is pharma missing the selling point?&quot; &copy;2007 GDS Publishing Ltd.</span>";
ideas[3] = "<span style='font-size: 120%;'>The average patient time spent in the waiting room was 19 minutes, and the average time spent watching the Healthy Advice Networks digital screen was 11 minutes</span><br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Nationwide 2008 Web Survey of 1142 patients who visited primary care physician waiting rooms installed with the Healthy Advice Primary Care Network</span>";
ideas[4] = "<span style='font-size: 120%;'>58%</span> of physicians show a program brochure to a patient at least once a day.<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Healthy Advice Spring 2006 Physician Survey</span>";
ideas[5] = "<span style='font-size: 120%;'>94%</span> of physicians rated the digital screens Waiting Room Network program 8-10 on a scale of 10.<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Wolters Kluwer Health (formerly NDC Health) Primary Care Network Study, October 2005</span>";
ideas[6] = "<span style='font-size: 120%;'>87% of patients</span> said the digital screens information was presented in a way that helped them gain a better understanding of the topic<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Nationwide 2008 Web Survey of 1142 patients who visited primary care physician waiting rooms installed with the Healthy Advice Primary Care Network</span>";
ideas[7] = "<span style='font-size: 120%;'>99% of physicians and practices surveyed</span> said they would recommend Healthy Advice programs to their colleagues.<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Healthy Advice for You and Your Family Spring 2006 Physician Survey</span>";
ideas[8] = "<span style='font-size: 120%;'>An overwhelming 85%</span> agreed that the &quot;ideal place to reach patients with educational content is in the doctor&#39;s office:  it is in the waiting room, in the examination room, and in conversation with physicians that patients are most cognizant of their health needs.&quot;<br><br><span style='font-size: 9px;color:#335687;text-align:center'>Source: Cutting Edge Information. &quot;Patient Education and Direct-to-Patient Communication&quot; interview of researchers from 20 pharmaceutical companies</span>";

// The random number generator.

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff


