// 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:#339966;text-align:center'>Source: Wolters Kluwer Health Interest Q&A, 2006</span>";
ideas[1] = "<span style='font-size: 120%;'>Every rep&#39;s share of voice has been dramatically diluted: For every 100 reps who call on a physician, only eight will actually deliver an effective detail.<br><br><span style='font-size: 9px;color:#339966;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[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:#339966;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%;'>72%</span> of physicians said they would be willing to see a sales representative one additional time to learn about updates presented on Healthy Advice for You and Your Family.<br><br><span style='font-size: 9px;color:#339966;text-align:center'>Source: Healthy Advice Spring 2006 Physician Survey</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:#339966;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:#339966;text-align:center'>Source: Wolters Kluwer Health (formerly NDC Health) Primary Care Network Study, October 2005</span>";
ideas[6] = "<span style='font-size: 120%;'>+8% to +12%</span> Average NRx Lift for brands in the digital screens Waiting Room Network<br><br><span style='font-size: 9px;color:#339966;text-align:center'>Source: Wolters Kluwer Health (formerly NDC Health) Primary Care Network Study, October 2005</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:#339966;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:#339966;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



