; Show on screen the unassigned peaks in the current database
;

if ($att['largest'] == 0) error "Database Empty !"

set f1min = (itop($zoom_2d[3],2,1))
set f2min = (itop($zoom_2d[4],2,2))
set f1max = (itop($zoom_2d[1],2,1))
set f2max = (itop($zoom_2d[2],2,2))
set pk = 0    set apk = 0   set wpk = 0

if (head(tail($VERSION)) > 4.102) then
foreach i in att  within 2 $f1min $f2min $f1max $f2max
  if ($i s! "LARGEST") then
     if (index(tolower($att[$i]),'unk') != 0) show_att $i
  endif
endfor
else
foreach i in att
  if ($i s! "LARGEST") then
     if (index(tolower($att[$i]),'unk') != 0) show_att $i
  endif
endfor
endif

