<!--
// Array Function
function makeArray() {
var args = makeArray.arguments;
for (var i = 0; i < args.length; i++) {
this[i] = args[i];
}
this.length = args.length;
}
// This array holds the descriptions and names of the pages.
var pages = new makeArray("Clients' Rankings",
"OUR RANKINGS",
"adhesives consulting",
"anodizing systems",
"coalescers",
"conveyor / trolley parts",
"conveyor lubricators",
"drum coatings",
"dumpers & lifts",
"finishing equipment",
"log siding",
"mixers / blenders",
"NJ home builder",
"paint consultant",
"process engineers",
"restaurant furniture",
"scrubbers",
"OTHER CLIENTS");
// This array hold the URLs of the pages.
var urls = new makeArray("",
"../reports/hhh-ranking-report.htm",
"../reports/chemquest.htm",
"../reports/walgren.htm",
"../reports/airid.htm",
"../reports/frost-inc.htm",
"../reports/digilube.htm",
"../reports/delta-coatings.htm",
"../reports/dumpers_unlimited.htm",
"../reports/slocum-equipment.htm",
"../reports/e-logsiding.htm",
"../reports/miracle-mixer.htm",
"../reports/estates-at-valhalla.htm",
"../reports/paint_consultant.htm",
"../reports/creative_engineers.htm",
"../reports/jays-furniture.htm",
"../reports/tri-mer.htm",
"../our_clients.htm");
// This function determines which page is selected and goes to it.
function goPage(form) {
i = form.menu.selectedIndex;            
if (i != 0) {
window.location.href = urls[i];  
}
}
//-->

