<!-- Begin
function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=14; // How many sites are listed below?

Sites = new makeArray(howmanysites);

<!-- STEP TWO: Use the pattern:  url~Site Title|Description for links  -->

Sites[1] = "http://www.777-health.com~777 Health|Consumer Reports on Life Issues";
Sites[2] = "http://pain-relief.health-shopper.net~Feel Good|Advanced Tools Relieve Arthritis Pain";
Sites[3] = "http://dating.health-shopper.net~New Love!|Get New, Hot Relationships!";
Sites[4] = "http://people-search.health-shopper.net~People Search|Find Love, Sex, or Friendship any where!";
Sites[5] = "http://propecia.health-shopper.net~Propecia|Grow Back Your Hair!";
Sites[6] = "http://viagra.health-shopper.net~Viagra|Regain Your Sexual Potency!";
Sites[7] = "http://weight-loss-diet.health-shopper.net~e Diets|Meet Your Weight Loss Objective!";
Sites[8] = "http://diet-center.health-shopper.net~Fat Loss|Meet Your diet goal with Natural Products";
Sites[9] = "http://filter.health-shopper.net~Stay Healthy|Superior Filter Technology!";
Sites[10] = "http://health-shopper.net/doctors_health_links.htm~Doctors Link|Recommended Prescription Drugs";
Sites[11] = "http://storefront.linksynergy.com/fs-bin/store?eid=LZdIoNpBMDc&offerid=14941&stid=622&subid=~Sharper Image|Massage Products to help you relax!";
Sites[12] = "http://storefront.linksynergy.com/fs-bin/store?eid=LZdIoNpBMDc&offerid=14941&stid=620&subid=~Sharper Image|Turn your home into a spa!";
Sites[13] = "http://weight-loss.health-shopper.net~eDiets!|Meet Your Weightloss Deadline!";
Sites[14] = "http://vitamins.health-shopper.net~Vitamins-NEW!|Up to 75% off your favourites from VitaCost!";

function showSites() {
if (w > howmanysites) { w=1; };
var string=Sites[w] + "";
var split1=string.indexOf("~");
var split2=string.indexOf("|");
var url=string.substring(0,split1);
var name=string.substring(split1 + 1,split2);
var word=string.substring(split2 + 1,string.length);
document.form.url.value=url;
document.form.name.value=name;
document.form.word.value=word;
w+=1;
window.setTimeout('showSites()',3000);

// You can change the speed!  3000 = 3 sec delay.  5000 = 5 sec delay, etc. 

}
function visitSite() {
window.location=document.form.url.value;
}
// End -->
