<!--
// 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("Select A Main Category ==>",
"RETURN TO ASK THE EXPERT",
"Calculations",
"Coatings: Liquid & Powder",
"Environmental Safety & Health Issues",
"Finishing Equipment",
"Miscellaneous",
"Paint & Coating Industries",
"Pretreatment & Surface Preparation",
"Quality Control",
"Record Keeping",
"Regulations, Permits, Violations",
"Solvents, Diluents, Thinners",
"Spray Booths",
"Spray Guns",
"Training",
"Troubleshooting",
"Wood Finishes");
// This array hold the URLs of the pages.
var urls = new makeArray("",
"../FAQ.htm",
"../Q&A/calculations_qa.htm",
"../Q&A/coatings.htm",
"../Q&A/health_safety.htm",
"../Q&A/finishing_equipment.htm",
"../Q&A/miscellaneous.htm",
"../Q&A/paint_coating_industries.htm",
"../Q&A/pretreatment_surface_preparation.htm",
"../Q&A/testing.htm",
"../Q&A/record_keeping.htm",
"../Q&A/regs_permits.htm",
"../Q&A/solvents.htm",
"../Q&A/spraybooth.htm",
"../Q&A/spraygun.htm",
"../Q&A/training.htm",
"../Q&A/paint.htm",
"../Q&A/wood_finishes.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];  
}
}
//-->

