// JavaScript Document

 function goto1(department){
  var list = document.getElementById(department);
  var url = list.options[list.selectedIndex].value;
  if (url!=''){
   window.location=url;
  }
 }
 function goto2(onlineservices){
  var list = document.getElementById(onlineservices);
  var url = list.options[list.selectedIndex].value;
  if (url!=''){
   window.location=url;
  }
 }
 function goto3(cityservices){
  var list = document.getElementById(cityservices);
  var url = list.options[list.selectedIndex].value;
  if (url!=''){
   window.location=url;
  }
 }
 function goto4(communitylinks){
  var list = document.getElementById(communitylinks);
  var url = list.options[list.selectedIndex].value;
  if (url!=''){
   window.location=url;
  }
 }

