function helpHorseService()
  {
   var helpMsg = "";                     	// Create empty message string variable.

   helpMsg  = "Horse Service Help\n\n";

   helpMsg += "Clink on a category of Horse Service to display a list of service providers.\n\n";

   helpMsg += "Providing the information is available, the list will show the name, description, address, ";
   helpMsg += "telephone numbers, contact persons, Website location (URL) and E-mail address for each provider.";   

   alert(helpMsg);
   return;
  }

function helpMapQuest()
  {
   var helpMsg = "";                     	// Create empty message string variable.

   helpMsg  = "MapQuest Help\n\n";

   helpMsg += "Our Web site uses the MapQuest interface to plot a map with driving directions from your ";
   helpMsg += "starting address (origin) to <?php echo($company_name); ?> (destination).\n\n";

   alert(helpMsg);
   return;
  }

function helpWeather()
  {
   var helpMsg = "";                     	// Create empty message string variable.

   helpMsg  = "Area Weather Help\n\n";
   helpMsg += "Click the name of a City, Town, or Village to link to that municipality's color coded 5 day weather forecast.\n\n";  
   helpMsg += "If you require more information, click either the link to go to The Weather Channel or the Current Doppler Radar.\n\n";
   helpMsg += "Move your cursor over the name of a City, Town or Village in order to view that municipality's state and zip code.";

   alert(helpMsg);
   return;
  }



