function validate(the_form){
 // Need to select the KEYWORDS & EURO FUNDING SOURCE selections so they 
 // get included in the form submit.
 
 for(var i=0;i<the_form.keywords1.length;i++) {
   the_form.keywords1[i].selected=true;
 }

 the_form.submit();
}

