<!-- Copyright 2003 Bontrager Connection, LLC
// See article "Changing Form Action URLs On-The-Fly" linked 
// from URL /library/archives --- http://www.willmaster.com/library/javascript/changing-form-action-urls-on-the-fly.php
// for more information about how to use this code.
function ActionDeterminator()
{
if(document.myform.dropdown.value == 'Leeds Met') {
document.myform.action = 'http://www.leedsmet.ac.uk:8766/kbroker/lmu/search.sim';
document.myform.inputme.name= 'qt'
}
if(document.myform.dropdown.value == 'Prospectus08') {
document.myform.action = 'http://prospectus.leedsmet.ac.uk/main/list.htm';
document.myform.method = 'post';
document.myform.inputme.name= 'search'
document.myform.p.value= '58'
}
if(document.myform.dropdown.value == 'Prospectus09') {
document.myform.action = 'http://prospectus.leedsmet.ac.uk/main/list.htm';
document.myform.method = 'post';
document.myform.inputme.name= 'search'
document.myform.p.value= '62'
}
if(document.myform.dropdown.value == 'Prospectus10') {
document.myform.action = 'http://prospectus.leedsmet.ac.uk/main/list.htm';
document.myform.method = 'post';
document.myform.inputme.name= 'search'
document.myform.p.value= '64'
}
if(document.myform.dropdown.value == 'Prospectus11') {
document.myform.action = 'http://prospectus.leedsmet.ac.uk/main/list.htm';
document.myform.method = 'post';
document.myform.inputme.name= 'search'
document.myform.p.value= '65'
}
if(document.myform.dropdown.value == 'Phonebook') {
document.myform.action = 'http://phonebook.leedsmet.ac.uk/main/search_iniresult.htm';
document.myform.method = 'post';
document.myform.inputme.name= 'surname'
}
return true;
}