<!-- HIDE FROM OLD BROWSERS
<!-- Created by Nikola Olic, olic@uta.edu on 3.8.99
<!-- Univeristy of Texas at Arlington
<!-- http://www.uta.edu

<!-- This script maintains two one-dimensional arrays for
<!-- a Department-to-Po.Box lookup. Both arrays have to
<!-- have the same number of entries and no numbers can be skipped,
<!-- since this file is used by create_list.js to make a list of
<!-- departments that will show up in your page...

<!-- NOTICE!!! When ever you edit this file, open and re-save the html
<!-- file in which this file is used.


var dpobox = new Object()
dpobox[0] = " "
dpobox[1]="19377"
dpobox[2]="19468"
dpobox[3]="19479 "
dpobox[4]="19449 "
dpobox[5]="19437 "
dpobox[6]="19467 "
dpobox[7]="19469"
dpobox[8]="19019"
dpobox[9]="23018 "
dpobox[10]="23045 "
dpobox[11]="19138 "
dpobox[12]="19308 "
dpobox[13]="23015 "
dpobox[14]="23016 "
dpobox[15]="23017 "
dpobox[16]="23031 "
dpobox[17]="23023 "
dpobox[18]="19617"
dpobox[19]="23089 "
dpobox[20]="19160 "
dpobox[21]="19595 "
dpobox[22]="23035 "
dpobox[23]="19557 "
dpobox[24]="19559 "
dpobox[25]="19529 "
dpobox[26]="19005 "
dpobox[27]="19105 "
dpobox[28]="19527 "
dpobox[29]="19539 "
dpobox[30]="19599 "
dpobox[31]="19103 "
dpobox[32]="19047"
dpobox[33]="19498 "
dpobox[34]="19065 "
dpobox[35]="23049 "
dpobox[36]="19408 "
dpobox[37]="23059 "
dpobox[38]="19528"
dpobox[39]="19222"
dpobox[40]="19108"
dpobox[41]="19407 "
dpobox[42]="19227"
dpobox[43]="19259 "
dpobox[44]="19129"
dpobox[45]="19588"
dpobox[46]="19167 "
dpobox[47]="19419"

var ddept = new Object()
ddept[0] = "- - - - - - -"
ddept[1]="COLLEGE OF BUSINESS"
ddept[2]="Accounting"
ddept[3]="Economics"
ddept[4]="Finance/Real Estate"
ddept[5]="Info.Systems & Mngmt.Science."
ddept[6]="Management"
ddept[7]="Marketing"
ddept[8]="COLLEGE OF ENGINEERING"
ddept[9]="Aerospace Engineering"
ddept[10]="Automation & Robotics"
ddept[11]="Biomedical Engineering"
ddept[12]="Civil & Environ. Eng."
ddept[13]="Computer Science Eng."
ddept[14]="Electrical Engineering"
ddept[15]="Industrial Engineering"
ddept[16]="Materials Science & Eng."
ddept[17]="Mechanical & Aerospace Eng."
ddept[18]="COLLEGE OF LIBERAL ARTS"
ddept[19]="Art & Art History"
ddept[20]="Communication"
ddept[21]="Criminology & Crim. Justice"
ddept[22]="English"
ddept[23]="Foreign Languages"
ddept[24]="Linguistics"
ddept[25]="History"
ddept[26]="Military Science"
ddept[27]="Music"
ddept[28]="Philosophy & Humanities"
ddept[29]="Political Science"
ddept[30]="Sociology & Anthropology"
ddept[31]="Theatre Arts"
ddept[32]="COLLEGE OF SCIENCE"
ddept[33]="Biology"
ddept[34]="Chemistry & Biochemistry"
ddept[35]="Geology"
ddept[36]="Mathematics"
ddept[37]="Physics"
ddept[38]="Psychology"
ddept[39]="HONORS COLLEGE"
ddept[40]="SCHOOL OF ARCHITECTURE"
ddept[41]="SCHOOL OF NURSING"
ddept[42]="COLLEGE OF EDUCATION"
ddept[43]="Kinesiology"
ddept[44]="SCHOOL OF SOCIAL WORK"
ddept[45]="SCHOOL OF URBAN & PUBLIC AFFAIRS"
ddept[46]="Graduate Studies"
ddept[47]="Interdisciplinary Studies"

var dphone = new Object()
dphone[0] = " "
dphone[1]="2881"
dphone[2]="3481"
dphone[3]="3061"
dphone[4]="3705"
dphone[5]="3502"
dphone[6]="3166"
dphone[7]="2876"
dphone[8]="2571"
dphone[9]="2603"
dphone[10]="5900"
dphone[11]="2249"
dphone[12]="5055"
dphone[13]="3785"
dphone[14]="2672"
dphone[15]="3092"
dphone[16]="2559"
dphone[17]="2561"
dphone[18]="3291"
dphone[19]="2891"
dphone[20]="2163"
dphone[21]="3318"
dphone[22]="2692"
dphone[23]="3161"
dphone[24]="3133"
dphone[25]="2861"
dphone[26]="3281"
dphone[27]="3471"
dphone[28]="2774"
dphone[29]="2991"
dphone[30]="2661"
dphone[31]="2650"
dphone[32]="3491"
dphone[33]="2871"
dphone[34]="3171"
dphone[35]="2987"
dphone[36]="3262"
dphone[37]="2266"
dphone[38]="2281"
dphone[39]="7216"
dphone[40]="2801"
dphone[41]="2776"
dphone[42]="2591"
dphone[43]="3288"
dphone[44]="3181"
dphone[45]="3071"
dphone[46]="2688"
dphone[47]="2338"


<!-- THE VALUE FOR num_of_depts (bellow) MUST MATCH the total number of array elements.

  var d_array = 47

  function d_get_pobox(num)
   {
    var location = num
    var box = dpobox[location]
    return box
   }

  function d_get_phone(num)
   {
    var location = num
    var box = dphone[location]
    return box
   }

  function d_display(selector)
   {
    if ((selector.options[selector.selectedIndex].index)==0)
      {
       selector.form.field.value="  "
      }
    else
      {
      selector.form.field.value=d_get_pobox(selector.options[(selector.selectedIndex)-1].index)
      }
   }

  function d_display_phone(selector)
   {
    if ((selector.options[selector.selectedIndex].index)==0)
     {
       selector.form.phone_field.value="  "
     }
    else
     {
   selector.form.phone_field.value=d_get_phone(selector.options[(selector.selectedIndex)-1].index)
     }
   }

// STOP HIDING -->
