<!-- Begin
function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=3; // How many sites are listed below?

Sites = new makeArray(howmanysites);

<!-- STEP TWO: Use the pattern:  url~Site Title|Description for links  -->

Sites[1] = "http://spiritworld.info~Spirit World|the Father of Secret Education Exchange";
Sites[2] = "http://www.quickinfo247.com/3341991/DSL~DIRECTV DSL™|Connection too Slow? Go DSL, Cheap!";
Sites[3] = "http://free-mortgage-calculator.us~$ave Big Money|Free U.S. Mortgage Management Service";
Sites[4] = "http://health-shopper.net~Health Shopper|the Mother of Secret Education Exchange";

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 -->
