/*===============================================================
COPYRIGHT NOTICE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Copyright (C) 2008 MRHS Class of 59 (MRHS59)

This is free  software; you can redistribute it  and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This  sofware is  made  available in  the  hope that  it will  be
useful,  but  WITHOUT  ANY  WARRANTY; without  even  the  implied
warranty of MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.

A copy of  the GNU General Public License  should be available on
the site where  you obtained this software. It  is also available
at:  http://www.gnu.org/licenses/licenses.html or  by  writing to
the Free Software Foundation,  Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA.

This is merely a notice. The only legally binding document is the
GNU General Public License.
===============================================================*/


/*===============================================================
MANUAL
-----------------------------------------------------------------
NAME
@(#) BrowserBugs.js - report of bugs in Safari and IE

SYNOPSIS
     This code is designed to be included (within SCRIPT-tags) in
     HTML ufiles. It will replace its invocation with a report of
     bugs in Safari and IE in the form of a table.

DESCRIPTION
     The HTML code inserted by this file reports that due to bugs
     in  Safari, the  dynamicaly  generated code  in the  various
     lists on the  MRHS59 site are not rendered  proper. It links
     to  the  file  'SafariBugs.html',  which  contains  a  table
     detailing the six browsers  and three operating systems that
     the lists have been tested  on. The only place where they do
     NOT work is in 'Safari' on MacOs X.

     A lesser bug in IE is also pointed out.

     As a solution to both problems, it is recommended that users
     install  Firefox,  whichever operating  system  they may  be
     using

FILES
     mrhs59utils.js - function 'get_rootpath()'used by this file
     BrowserBugs.js - this file
     SafariBugs.html - linked to, see DESCRIPTION above

     This file is included (between SCRIPT-tags) in the following
     lists:

     HearsayList.html - list of located classmates
     MissingList.html - list of classmates not yet located
     MasterList.html - alphabetical list of ALL 1959 graduates
     ClassList.html - generic list, one occurence for each class

AUTHOR
     Donald MacLean          IGdonaldNOatREmacCAleansPIdotTAnetLS
                                      (Do what the capitals say.)
VERSION
@(#) BrowserBugs.js    vers 1.0.0 - 2008 07 10

End MANUAL
===============================================================*/
var ROOTDIR_ = get_rootpath();

document.write(
  "<TABLE  CLASS=\"bug\" WIDTH=80% ALIGN=\"center\" "
  + "CELLPADDING=4>\n"
  + "<TR><TD>\n"

  + "<B>Note for Mac users</B><BR>\n"
  + "Due to <SPAN CLASS=rb>bugs in Apple's Safari "
  + "browser</SPAN>,\n"
  + "the MRHS59 lists of classmates are not always "
  + "displayed properly in that browser.\n"
  + "(<A HREF=\"" + ROOTDIR_ 
  + "Classes/SafariBugs.html\">Read more about it</A>.)\n"
  + "</TD><TD>\n"
  + "<IMG SRC=\"" + ROOTDIR_ 
  + "Classes/SafariLogoSmall.jpg\" ALIGN=\"right\">\n"
  + "</TD></TR><TR><TD>\n"

  + "<B>Note for Windows users</B><BR>\n"
  + "Due to "
  + "<SPAN CLASS=\"rb\">a bug in Internet Explorer</SPAN>,\n"
  + "you will <I>sometimes</I> have to\n" 
  + "<SPAN CLASS=\"rb\">click twice</SPAN>\n"
  + "on the <I>Torch</I> icon, if you are using that browser,\n"
  + "to get to a classmate's entry.\n"
  + "The first click will open the page for that class.\n"
  + "The second click will take you to the particular classmate\n"
  + "on the page.<BR>\n"
  + "Due to "
  + "<SPAN CLASS=\"rb\">another bug in Internet Explorer</SPAN>,\n"
  + " photographs will sometimes float on top of and "
  + "<SPAN CLASS=\"rb\">conceal text</SPAN>,\n"
  + "which is supposed to appear beside the photographs.\n"
  + "When this happens, a quick fix is to widen the window.\n " 
  + "Complaints to Microsoft, please.<BR>\n"
  + "</TD><TD>\n"
  + "<IMG SRC=\"" + ROOTDIR_ 
  + "Classes/ExplorerLogoSmall.jpg\" ALIGN=\"right\">\n"
  + "</TD></TR><TR><TD>\n"

  + "<B>What is the solution?</B><BR>\n"
  + "In both cases,\n"
  + "<SPAN CLASS=bb>the solution is to use Firefox!</SPAN>\n"
  + "It is reliable, easy to use,\n"
  + "and you can\n"
  + "<A HREF=\"http://www.mozilla.com/en-US/firefox/\""
  + ">download it free</A> from Mozilla.\n"
  + "</TD><TD><IMG SRC=\"" + ROOTDIR_ 
  + "Classes/FirefoxLogoSmall.jpg\" ALIGN=\"right\"></TD>\n"
  + "</TD></TR></TABLE>"
)

/*==================
Local Variables:
indent-tabs-mode:nil
fill-column:65
fill-prefix:"     "
End:
==================*/
