//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='machines/api_gauges.htm'>API Gauges</OPTION>");
document.write("<OPTION value='machines/cut-offs1.htm'>Cut-Off Machines</OPTION>");
document.write("<OPTION value='machines/chucks.htm'>Chucks</OPTION>");
document.write("<OPTION value='machines/ironworkers.htm'>Ironworkers</OPTION>");
document.write("<OPTION value='machines/Lathes1.htm'>CNC Lathes</OPTION>");
document.write("<OPTION value='machines/enginelathes.htm'>Engine Lathes</OPTION>");
document.write("<OPTION value='machines/inspectiontools.htm'>Inspection Tools</OPTION>");
document.write("<OPTION value='machines/laser.htm'>Lasers</OPTION>");
document.write("<OPTION value='machines/pipebenders.htm'>Pipe Benders</OPTION>");
document.write("<OPTION value='machines/pressbrakes.htm'>Press Brakes</OPTION>");
document.write("<OPTION value='machines/pumps.htm'>Pumps</OPTION>");
document.write("<OPTION value='machines/robots.htm'>Robots</OPTION>");
document.write("<OPTION value='machines/threading.htm'>Pipe End Finishing & Threading Equipment</OPTION>");
document.write("<OPTION value='machines/radialdrills.htm'>Radial Drills</OPTION>");
document.write("<OPTION value='machines/ringroller.htm'>Ring Rollers</OPTION>");
document.write("<OPTION value='machines/bandsaws.htm'>Saws</OPTION>");
document.write("<OPTION value='machines/tubeshaper.htm'>Tube Shaping Equipment</OPTION>");
document.write("<OPTION value='machines/Vert_Mill_Mach1.htm'>Vertical Milling Machines</OPTION>");
