					function AutoLoad()
					{
						var optionIndex;
				
						optionIndex = document.CATEGORY.selections.value;
							if (optionIndex == '') 
							{
								optionIndex = 'index.htm'
							}					
						location.href = optionIndex;
					}
				
					function GetBrowser()
					{
						browserName = navigator.appName;
						browserVer = parseInt(navigator.appVersion);
						if ((browserName == "Netscape" && browserVer < 3) || (browserName == "Microsoft Internet Explorer" && browserVer <= 3.02)) version = "n2";
						else version = "n3";
						return;
					}
					
					GetBrowser()
					var filename;
					filename = location.pathname;
					if (filename == '/') {
						filename = '/index.htm'
					}
					
					if (version == 'n2') {
						document.write('Categories:<BR>');
						document.write('<a href=elbow_shin.htm>Elbow/Shin Pads</a><BR>');
						document.write('<a href=pants_gloves.htm>Pants/Gloves</a><BR>');
						document.write('<a href=ice_skates.htm>Ice Skates</a><BR>');
						document.write('<a href=shoulder_pads.htm>Shoulder Pads</a><BR>');
						document.write('<a href=miscellaneous.htm>Miscellaneous</a><BR>');
						if (filename !='/index.htm') {
							document.write('<a href=index.htm>---Home---');
						}
					}
					else {
						document.write('<form method="post" name="CATEGORY">');
						document.write('<select name="selections" size="1" title="Selection List" onChange="AutoLoad()">');
						document.write('<option>Categories');
						document.write('<option value="elbow_shin.htm">Elbow/Shin Pads');
						document.write('<option value="pants_gloves.htm">Pants/Gloves');
						document.write('<option value="ice_skates.htm">Ice Skates');
						document.write('<option value="shoulder_pads.htm">Shoulder Pads');
						document.write('<option value="miscellaneous.htm">Miscellaneous');
						if (filename !='/index.htm') {
							document.write('<option value="index.htm">---Home---');
						}
						document.write('</select>');
						document.write('</form>');
					}