function PickOne()
{
   var selectionIndex = document.MyForm.MySelectBox.selectedIndex
   var selection = document.MyForm.MySelectBox.options[ selectionIndex].text
   switch ( selection )
   {
case "Architecture":
   location = "hardware.html#Arch"
   break;
case "Motherboard Suppliers":
   location = "hardware.html#Mother"
   break;
case "Storage":
   location = "hardware.html#SCSI"
   break;
case "Ethernet Equipment":
   location = "hardware.html#Ether"
   break;
case "Laptops / Portables":
   location = "hardware.html#Laptop"
   break;
case "Modems":
   location = "hardware.html#Modems"
   break;
case "Other Hardware":
   location = "hardware.html#OtherH"
   break;
case "Vendors":
   location = "hardware.html#Vendor"
   break;
case "Novell":
   location = "software.html#Novell"
   break;
case "Internet Software":
   location = "software.html#Internet"
   break;
case "HTML and Web info":
   location = "software.html#HTML"
   break;
case "Databases":
   location = "software.html#Database"
   break;
case "Programming":
   location = "software.html#Language"
   break;
case "Other Software":
   location = "software.html#OSoftware"
   break;
     default :
        alert( "An Error has occurred !" );
     }
}
