   Hyperlink HowTo
   ---------------

   Add the following files to the project:
   HyperLink.cpp
   HyperLink.h

   Add the following cursor to the project:
   IDC_HLINK	hlink.cur

   Add the following to the dialogs Class implementation (.h) file:
   #include "HyperLink.h"
   CHyperLink m_HomePageLink;
   CHyperLink m_EMailLink;

   Add the following to the dialogs OnInitDialog function:
   (Should put the text in the resource file)
   // Set HyperLink for E-Mail
   m_EMailLink.SetURL(_T("mailto:yourlogin@yourisp.com"));
   m_EMailLink.SetUnderline(TRUE);

   // Set HyperLink for Home Page
   m_HomePageLink.SetURL(_T("http://your.website.com/~yourlogin/index.html"));
   m_HomePageLink.SetUnderline(TRUE);

   Add Static Text elements to the dialog:
   IDC_HOMEPAGELINK	http://your.website.com/~yourlogin/index.html
   IDC_EMAILLINK	yourlogin@yourisp.com

   Add the following lines to the dialogs DoDataExchange function:
   DDX_Control(pDX, IDC_EMAILLINK, m_EMailLink);
   DDX_Control(pDX, IDC_HOMEPAGELINK, m_HomePageLink);

