function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=10; 

Sites = new makeArray(howmanysites);

Sites[1] = "index.html~Home|New World Order, Inc.";
Sites[2] = "products.html~Products And Services|What Can We Provide For You?";
Sites[3] = "company.html~Company Information|What Does New World Order, Inc. Do?";
Sites[4] = "contact.html~Contact Us|Find Out Where We Are";
Sites[5] = "search.html~Search Our Site|Looking For Something?";
Sites[6] = "feedback.html~Send Us Feedback|Send Your Comments Back To Us!";
Sites[7] = "copyright.html~Legal Information|Legal Stuff.";
Sites[8] = "clients.html~Clients|How Do I Become A Client?";
Sites[9] = "links.html~Links|What Resources Does New World Order, Inc. Use?";
Sites[10] = "consultant.html~Consultants Resources|Become A Consultant Of New World Order, Inc.";

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);


}
function visitSite() {
window.location=document.form.url.value;
}
