function auto_nav() {
  var globallinks = new Array
   ("index.html",
"http://www.icasit.org/teaching.html",
"http://www.icasit.org/classes/pubp726spring2003/tvlectures.htm",
"videos.html",
"3dtv.html",
"3G.html",
"alt_pay_methods.html",
"ambient.html",
"audio_fingerprint.html",
"augmented_reality.html",
"biometrics.html",
"blogging.html",
"bluetooth.html",
"broadband.html",
"BPL.html",
"Context_Aware_Computing.html",
"convergence.html",
"cryptography.html",
"cyberthreats.html",
"data_mining.html",
"data_theft.html",
"digital_divide.html",
"digital_nomads.html",
"dmca.html",
"digitization_copyright_law.html",
"disaster_recovery.html",
"distributed_computing.html",
"e_gambling.html",
"e_government.html",
"e_voting.html",
"e_waste.html",
"fairuse.html",
"fixed_wireless.html",
"games_multiuser.html",
"green_IT.html",
"hd_radio.html",
"hdtv.html",
"Health_IT.html",
"IT_security.html",
"internet2.html",
"internet_censorship.html",
"internet_dating.html",
"internet_demographics.html",
"internet_pornography.html",
"internet_radio.html",
"internet_taxation.html",
"ip_telephony.html",
"ISP_filtering.html",
"knowledge_management.html",
"legislative_initiatives.html",
"m_banking.html",
"major_global_indices.html",
"MajorTechTrends.html",
"malware.html",
"Municipal_Broadband.html",
"Nano_Tech.html",
"National_Broadband.html",
"net_neutrality.html",
"One_laptop_per_child.html",
"resources.html",
"outsourcing.html",
"phishing.html",
"Piracy.html",
"privacy.html", 
"radiosatellite.html",
"records_digitization.html",
"regulation.html",
"rfid.html",
"RSS.html",
"Second Life.html",
"shareware.html",
"SmartGrid.html",
"SocialNetworking.html",
"spam.html",
"spectrum.html",
"spyware.html",
"Technology_and_Religion.html",
"telecommuting.html",
"telegeography.html",
"ThinkTanks.html",
"ultra_wideband.html",
"universal_service.html",
"virtual_reality.html",
"wi-fi.html",
"wiki.html",
"wimax.html",
"Wireline Access.html",
"world_is_flat.html")
  var globallabels = new Array 
   ("Home",
   "Current Teaching",
   "Online TV Lectures",
   "** NEW Video Clips Index **",
   "3D TV",
   "3G",
   "Alternative Payment Methods",
   "Ambient Intelligence",
   "Audio Fingerprint",
   "Augmented Reality",
   "Biometrics",
   "Blogging",
   "Bluetooth Technology",
   "Broadband",
   "Broadband over Powerline",
   "Context Aware Computing",
   "Convergence",
   "Cryptography",
   "Cyber Threats",
   "Data Mining",
   "Data Theft",
   "Digital Divide",
   "Digital Nomads",
   "DMCA",
   "Digitization and Copyright Law",
   "Disaster Recovery",
   "Distributed Computing",
   "e-Gambling",
   "e-Government",
   "e-Voting",
   "e-Waste",
   "Fair use",
   "Fixed Wireless",
   "Games - Massive Multi-user Online Worlds",
   "Green IT",
   "HD Radio",
   "HDTV",
   "Health IT",
   "Information Technology Security",
   "Internet2",
   "Internet Censorship",
   "Internet Dating",
   "Internet Demographics",
   "Internet Pornography",
   "Internet Radio",
   "Internet Taxation",
   "IP Telephony",
   "ISP Filtering",
   "Knowledge Management",
   "Legislative Initiatives",
   "M-Banking and Microfinance",
   "Major Global Indices",
   "Major Technology Trends",
   "Malware",
   "Municipal Broadband",
   "Nanotechnology",
   "National Broadband Plans",
   "Net Neutrality",
   "One Laptop per Child",
   "Other Resources",
   "Outsourcing IT Jobs",
   "Phishing",
   "Piracy",
   "Privacy",
   "Radio Satellites",
   "Records Digitization",
   "Regulation",
   "RFID - Radio Frequency Identification",
   "Really Simple Syndication",
   "Second Life",
   "Shareware",
   "Smart Grid",
   "Social Networking",
   "Spam",
   "Spectrum",
   "Spyware",
   "Technology and Religion",
   "Telecommuting",
   "Telegeography",
   "Think Tanks",
   "Ultra Wideband",
   "Universal Service",
   "Virtual Reality",
   "Wi-Fi",
   "Wiki",
   "WiMax",
   "Wireline",
   "The World is Flat");
  document.write('<DIV class="menu">');
  document.write("<CENTER>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  document.write("<BR>");
  print_links(globallinks, globallabels);
  document.write("</CENTER>");
  document.write("</DIV>");
}

function print_links(
  linksarray, labelsarray) {
  var pathname = document.location;
  for(link in linksarray) {
    if(pathname == linksarray[link]) {
      document.write("<P><I>" 
        + labelsarray[link] 
        + "</I></P>");
    } else {
      document.write('<P><A HREF="' 
        + linksarray[link] 
        + '">' + labelsarray[link] 
        + '</A></P>');
    }
  } 
}

auto_nav();
