function pulldown( form, sel) {
  idx = sel.selectedIndex;
  if ( idx != 0 ) {
    if ( idx == 3 ) {
      self.open(form.sel.options[idx].value,'_top');
    }
    else {
      self.open(form.sel.options[idx].value,'_top');
    }
  }
}
