function setAction(frm){
act = '';
for(x=0;x<frm.se.length;x++){
if(frm.se[x].checked){
act = frm.se[x].value;
}
}
if(act == 'catalog'){
frm.action = 'http://catalog.mbln.org/ipac20/ipac.jsp';
frm[0].name = 'term';
frm[1].name = 'menu';
frm[1].value = 'search';
frm[2].name = 'aspect';
frm[2].value = 'basic_search';
frm[3].name = 'profile';
frm[3].value = 'bpl1';
frm[4].name = 'index';
frm[4].value = '.GW';
}
else if(act == 'site'){
frm.action = 'http://www.bpl.org/search/results.htm';
frm[0].name = 'qu';
frm[1].name = 'mh';
frm[1].value = '50';
frm[2].name = 'ae';
frm[2].value = '1';
frm[3].name = 'sd';
frm[3].value = 'hitcount';
frm[4].name = 'ct';
frm[4].value = 'd:\\websites\\bpl.org';
}
else{
alert('Please choose to search either the catalog or the site.');
return false;
}
return true;
}
