<!-- Hide from JavaScript-Impaired Browsers
/* 
	First, if you load fewer or more than 5 sponsors
   into your rotator, change the "sponnr" variable
   to the actual number of sponsor .gifs you plan to
   load. */
number_of_sponsors=5;

var sctr=0;
var halt=0;
var isn=new Array();
var durl=new Array();

for (i=0;i<number_of_sponsors;i++){
 isn[i]=new Image();
}

isn[0].src="images/allscripts.jpg";
isn[1].src="images/dunbar.jpg";
isn[2].src="images/RyanAssociates.jpg";
isn[3].src="images/BTE.jpg";
isn[4].src="images/labone.jpg";

durl[0]="Partners.aspx?partner=26";
durl[1]="Partners.aspx?partner=2";
durl[2]="Partners.aspx?partner=67";
durl[3]="Partners.aspx?partner=66";
durl[4]="Partners.aspx?partner=23";

/* This script is set to rotate every 10 seconds.
   (5000=5 seconds, so 30000 would equal 30, etc)
   You should change the number in the setTimeout()
   call below for the number of seconds you wish. */
   
function rotateIt(){
 if (halt!=1){
  sctr++;
  if (sctr>number_of_sponsors-1){
   sctr=0;
   }
  document.sponsor.src=isn[sctr].src;
  setTimeout("rotateIt()",5000);
  }
 }

/* This code will work just fine with or without
   frames.  However, if you are in frames and wish
   to replicate the TARGET="_top" call to remove
   frames, change the location.href call to:
    parent.location.href=durl[sctr];
   below. */
function doIt(){
 halt=1;
 location.href=durl[sctr];
 }

function dispIt(){
 parent.window.status=durl[sctr];
 //parent.window.status="";
 }
// End Hiding -->

