// JavaScript Document

var howOften = 9; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();
    items[0]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> Just wanted to drop you a quick line and let you know that SIBA really appreciates your assistance.  When we originally purchased from MediPro, we received great support from Marc and now Marcus. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
	items[1]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> Hi Marc: I am writing to you to express my sincere thanks to all of you; it's refreshing that you have been more than happy to help us in initiation, training, and operation of our Lytec and MediNotes e systems. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
    items[2]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> Hey Marc, Just wanted to let you know how happy we are with our (new) support. It's like the switch got flipped, and Christine is suddenly getting the help she needs. She thinks Marcus is just great! <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
	items[3]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> I appreciate the great customer service you provided. It is something that is not found everywhere. Your support is far better than that of Lytec. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
    items[4]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> Just a quick note to let you know that we are progressing along fine with our new Lytec software. Also, the switch to Emdeon has been an incredible improvement from our previous clearinghouse. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
    items[5]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> Just a quick note to let you know that the trainer was very courteous and helpful. We just had so much to learn in so little time. Hopefully MediPro will be able to guide us in the proper ways. Thanks again! <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
	items[6]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> I am really happy with MediPro services overall starting with Lytec. I want to keep that healthy relationship forever and would always recommend you guys to anyone. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
    items[7]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> This letter is a statement of support for MediPro, Lytec, and MediNotes e. I am a podiatrist who has been in practice for about 13 1/2 years. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";
    items[8]="<img src='http://www.medipro.com/images/qtleft.gif' width='10' height='11'> The training during my stay was excellent - I feel much better prepared to assist our group in taking full advantage of our new software. <img src='http://www.medipro.com/images/qtright.gif' width='10' height='11'>";

function rotater() {
    if(document.layers) {
        document.placeholderlayer.document.write(items[current]);
        document.placeholderlayer.document.close();
    }
    if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
        if(document.all)
            placeholderdiv.innerHTML=items[current];

    current = (current==items.length-1) ? 0 : current + 1; //increment or reset //increment or reset
    setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;
//–>
