function sel(oid,val){
	c='#000';
	if(o=get_obj(oid)){
		o.style.color=c;
		if(o.value==val){
			o.value='';
		}
	}
}
function desel(oid,val){
	c='#999';
	if(o=get_obj(oid)){
		if(!o.value || (o.value==val)){
			o.value=val;
			o.style.color=c;
		}
	}
}

