   // ---------------------------------------------------------------
   // Display the service area information.
   //
   function popUpInfo(servicearea)
   {
     mySite = "http://thecmcdoctor.com/"
     myChoice = servicearea + ".html";
     day = new Date();
     id = day.getTime(); // used to make up a random variable and window name.
     eval("page" + id + " = window.open(mySite + myChoice, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=400');");
   }
