NOTE: To use the guestbook on your site you need to have MySQL3/4/5 and PHP4/5 
      installed on host PC. Graphics library with "png" images support
      should be installed in PHP engine in order antispam feature works

1) Copy "guestbook" folder to site's folder

2) Enter actual paths to "header" and "footer" files in 
   $header_filename, $footer_filename variables of "guestbook/includes/config.php".
   These files are ones that are loaded by each site's page and contain header
   and footer information for each page (main menu, logos, copyright)
   Opening "<html>" and "<head>" tags should not be present in header file.
   They already exist on guestbook pages.
   The same is with "<title></title>" tags. Header file should begin with "</head>" 
   tag and possibly some tags of "<head>" section before <"/head">.
   This is done this way in order it is possible to define title and style
   for each page.

   For example: 
<!-- begin of header file-->
    <link rel="STYLESHEET" href="/includes/styles.css" type="text/css">

  <SCRIPT LANGUAGE="JavaScript">
  var d = new Date()
  if (d.getTimezoneOffset) {
    var iMinutes = d.getTimezoneOffset()
    document.cookie = "tz=" + iMinutes
  }
  </SCRIPT>

  </head>

  <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  ...

3) In <HEAD> section of header file write script as in example above.
   The script is necessary for guest book to determine client timezone.

4) Change titles of each guest book's page in the following variables of 
   "guestbook/messages/messages.xxx" files:
   $MainPageTitle, $AdminPageTitle, $InstallPageTitle and $LoginPageTitle.

5) Change variables in "guestbook/includes/config.php" to real values for your site.

6) Open http://your_site_name/guestbook/install.php to create administrator account 
   and necessary tables in MySQL database.

7) Open http://your_site_name/guestbook/index.php to check how the book works

8) To login as administrator and administrate guest book use the following link:
   http://your_site_name/guestbook/login.php

9) To change administrator data use the following link:
   http://your_site_name/guestbook/install.php?action=change

10) Two languages are supported: Russian and English. Russian is the default one.
    English language can be activated by adding "?lang=eng" to any book's url.
    Example:
    http://your_site_name/guestbook/index.php - page with Russian content
    http://your_site_name/guestbook/index.php?lang=eng - page with English content