//Create MIL namespace, if not already created
if (typeof(MIL)=="undefined") var MIL = {};
MIL.webEvents = {};
MIL.webEvents.results = function ( element ) {
  if  ( element.selectedIndex != 0 ) {
    var selection = element.options[element.selectedIndex].value;
    location.href = MIL.dbURL + "/results?readform" + "&q=" + selection + "&t=" + escape(element.id);
  }
}
MIL.webEvents.podcastResults = function ( element ) {
  if  ( element.selectedIndex != 0 ) {
    var selection = element.options[element.selectedIndex].value;
    location.href = MIL.dbURL + "/podcastresults?readform" + "&q=" + selection + "&t=" + escape(element.id);
  }
}

