<!--
// 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 PAGE ==>",
"Home",
"Blade Sharpening",
"Bit Sharpening",
"Circular Saws",
"FAQ",
"Videos - Cutting Metal",
"Videos - Instructional",
"Saw Blade Prices",
"- Band",
"- Blind Cutting",
"- Circular (metal)",
"- Combination",
"- Conic Scoring",
"- Dado Sets",
"- Demolition",
"- Diamond",
"- Door Jamb",
"- Double Cut Off",
"- Edge Banders",
"- Finger Joint",
"- General - Alt.Top",
"- General - 3 Chip",
"- Glue Joint",
"- Large Trim 22,24,26",
"- Lucas",
"- Melamine",
"- Metal",
"- Mitre & Double",
"- Multi-Score Split",
"- Non-Ferrous",
"- Panel",
"- Plastic",
"- Professional",
"- Radial Arm",
"- Rip ATB",
"- Rip FTG & TCG",
"- Solid Surface",
"- Split Scoring",
"- Stabilizers",
"- Thin & Ultra",
"- Trim & Precision",
"- Truss & Comp.",
"- Vorwood Door Trimming",
"Sharpening Saw Prices",
"Shipping",
"Supplier Links");
// This array hold the URLs of the pages.
var urls = new makeArray("",
"index.html",
"sawblades.html",
"router-bits.html",
"metal-sawblade-machines.html",
"faq.html",
"videos.html",
"instructional-sawblade-videos.html",
"new-sawblade.html",
"band-saw-blades.html",
"blind-cutting-saw.html",
"circular-metal-cutting.html",
"combination-saw-blade.html",
"conic-scoring-saws.html",
"dado-sets.html",
"demolition-saw-blade.html",
"diamond-saw.html",
"door-jamb-saw.html",
"double_cut_off.html",
"edge-banders.html",
"finger-joint-cutters.html",
"general-purpose-saws.html",
"triple-chip.html",
"glue-joint-rip-saw.html",
"large-trim-sawblades.html",
"lucas-saws.html",
"laminate-sawblade.html",
"metal-devil-prices.html",
"mitre-sawblades.html",
"multi-score-split-saws.html",
"nonferrous-cutting.html",
"panel-saw-blade.html",
"plastic-cutting-saw.html",
"professional-series.html",
"radial-arm-saws.html",
"rip-saw.html",
"gang-rip-saws.html",
"solid-surface-saws.html",
"split-scoring-saws.html",
"saw-blade-stabilizers.html",
"ultra-thin-blades.html",
"trim-saw-blades.html",
"truss-component-blade.html",
"vorwood-door-trimming-saws.html",
"pricelist.html",
"shipping.html",
"products.html");
// 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];  
}
}
//-->

