
function go1(){
if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
	}



document.write('<form name="selecter1"><select name="select1" size=1 onchange="go1()">');
document.write('<option value=none>Click here to select a category');
document.write('<option value="http://www.odcmp.com/USAMU/Equipment_Ammo.htm">Equipment and Ammunition');
document.write('<option value="http://www.odcmp.com/USAMU/Positions.htm">Shooting Positions');
document.write('<option value="http://www.odcmp.com/USAMU/Techniques.htm">Shooting Techniques and Tactics');
document.write('</select>');
document.write('</form>');

