// JavaScript Document
//This is used for the drop down section of the catalog
function formHandler(form){
var URL = document.form.section.options[document.form.section.selectedIndex].value;
window.location.href = URL;
}