// This script derives the city specific appointments header from the url.
     var currHost = window.location.hostname;
     firstIndex = 0;
     lastIndex = currHost.lastIndexOf(":");
     var apptTitle = currHost.substring(firstIndex,lastIndex);
     var titleHdr = "Welcome To "+apptTitle;
     document.write("<title>"+titleHdr+"</title>")

