<<
if not(istrue(mapLoggedIn)) then
display ^
You must log in before viewing this information.
^
/display
else
display ^
^ /display
/if
if formSubmitted = 'mapSearchForm' then
srch = ''
if isdefined(srch_ORG_NAME) then srch = ' and ORG_NAME="'+srch_ORG_NAME+'"' /if
#/ search org db for matches /#
orgList = dbsearch(ORGDB, 'ORG_MASTER<>"T"'+srch, 1, 9999)
if dbresults[1,1]<>'TRUE' or dbresults[5,1]=0 then
display LF+^ No records found in Organization Database
^ /display
else
copy file="discipline.lst" ts=',' to discipline /copy
hr = '
'
for name=orgList rowname=r do
display ^
^+hr+^
^+r[2]+^
^+r[7]+^ County
Contact: ^+r[3]+^
Phone: ^+r[6]+^
Email: ^+r[4]+^
Federal District: ^+8+^
State district: ^+r[9]+^
^
/display
tmp = getcoleq(discipline,1,r[10])
if items(tmp)>1 then
display LF+^ Discipline: ^+tmp[2]+^
^ /display
/if
hr = '
'
/for
/if
/if
formMessage = ''
>>
<<#/ ########################### End of RIGHT Section ########################### /#>>