function pulldown( form, sel) {
	idx = sel.selectedIndex;
	if ( idx == 1 ) {
		self.open(form.sel.options[idx].value,'_top');
	} else if ( idx == 9 ) {self.open(form.sel.options[idx].value,'_blank');
	} else if ( idx == 10 ) {self.open(form.sel.options[idx].value,'_blank');
	} else if ( idx == 11 ) {self.open(form.sel.options[idx].value,'_blank');
	} else if ( idx == 12 ) {self.open(form.sel.options[idx].value,'_blank');
	}  else {self.open(form.sel.options[idx].value,'_top');
	}
}
