//new page loader function
function jumpPage(newLoc){
newPage = newLoc.options[newLoc.selectedIndex].value;
if (newPage !=""){
window.location.href = newPage;
};
};

//this section writes the drop-down list into the HTML file
document.write("<FORM><SELECT name='newLocation' onchange='jumpPage(this.form.newLocation)'>");
document.write("<OPTION selected value=''>I want to see the ...?</OPTION>");
document.write("<OPTION value='api_gauges.htm'>API Gauges</OPTION>");
document.write("<OPTION value='building.htm'>Building, Steel</OPTION>");
document.write("<OPTION value='chucks.htm'>Chucks</OPTION>");
document.write("<OPTION value='Lathes1.htm'>CNC Lathes</OPTION>");
document.write("<OPTION value='VMC1.htm'>CNC Machining Centers</OPTION>");
document.write("<OPTION value='conveyors.htm'>Conveyors</OPTION>");
document.write("<OPTION value='cut-offs1.htm'>Cut-Off Machines</OPTION>");
document.write("<OPTION value='Grinders1.htm'>Grinders</OPTION>");
document.write("<OPTION value='HBM1.htm'>Horizontal Boring Mills</OPTION>");
document.write("<OPTION value='hpu.htm'>Hydraulic Power Units</OPTION>");
document.write("<OPTION value='inspectiontools.htm'>Inspection Tools</OPTION>");
document.write("<OPTION value='marking.htm'>Marking Machines</OPTION>");
document.write("<OPTION value='threading.htm'>Pipe End Finishing & Threading Equipment</OPTION>");
document.write("<OPTION value='planer_mills.htm'>Planer Mills</OPTION>");
document.write("<OPTION value='pumps.htm'>Pumps</OPTION>");
document.write("<OPTION value='ringroller.htm'>Ring Rollers</OPTION>");
document.write("<OPTION value='BandSaw1.htm'>Saws</OPTION>");
document.write("<OPTION value='transformers.htm'>Transformers</OPTION>");
document.write("<OPTION value='trepanners.htm'>Trepanners</OPTION>");
document.write("<OPTION value='tubeshaper.htm'>Tube Shaping Equipment</OPTION>");
document.write("<OPTION value='upsetters.htm'>Upsetters</OPTION>");
document.write("<OPTION value='Vert_Mill_Mach1.htm'>Vertical Milling Machines</OPTION>");
document.write("<OPTION value='welders.htm'>Welders</OPTION></SELECT></FORM>");