// 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.

testim = new makeArray(6);
testim[0] = "<span style='font-size: 110%;color:#ffffff;'>&quot;My practice personnel, the other doctors, my ancillary staff, with the secretaries and the nurses, they all enjoy it very much...They all stop by and they get kind of mesmerized by it and look at it and stop what they&#39;re doing and read something...So it&#39;s stimulating for everybody in the office.&quot;</span>";
testim[1] = "<span style='font-size: 110%;color:#ffffff;'>&quot;It&#39;s a very concise, very effective way of presenting information that otherwise we wouldn&#39;t have access to or even look up on our own time...I remember a patient bringing up a topic that I&#39;d just seen on PracticeWire a couple days before and I was able to talk to them about it because [PracticeWire] had informed me about that specific topic.  It&#39;s certainly great if you have time constraints...perfect for a physician that just doesn&#39;t have enough time to read on his own.&quot;</span>";
testim[2] = "<span style='font-size: 110%;color:#ffffff;'>&quot;As far as the [PracticeWire] program and my compliance efforts are concerned it is almost impossible for any physician to operate without external knowledge coming in on a regular basis.  Things change so quickly in medicine.  We work in a fluid environment...The rules change constantly.  I don&#39;t think I could keep up a current medical practice if I was to try to rely on all my outside reading to give me the latest information.  I need to have constant input as to what&#39;s happening out there and then I can take that information and use it to my patient&#39;s advantage.&quot;</span>";
testim[3] = "<span style='font-size: 110%;color:#ffffff;'>&quot;I watch PracticeWire fifteen to twenty minutes maybe in between the patients.&quot;</span>";
testim[4] = "<span style='font-size: 110%;color:#ffffff;'>&quot;I think during the normal course of the day, since I pass by the PracticeWire monitor on a regular basis, I&#39;m probably seeing it up to thirty minutes a day.&quot;</span>";
testim[5] = "<span style='font-size: 110%;color:#ffffff;'>&quot;With PracticeWire I&#39;m able to gather information quickly without spending additional time, thus I feel that it enhances my knowledge of what&#39;s happening in my profession.&quot;</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


