/****************************************************************************
 * NCSA Mosaic for the X Window System                                      *
 * Software Development Group                                               *
 * National Center for Supercomputing Applications                          *
 * University of Illinois at Urbana-Champaign                               *
 * 605 E. Springfield, Champaign IL 61820                                   *
 * mosaic@ncsa.uiuc.edu                                                     *
 *                                                                          *
 * Copyright (C) 1993, Board of Trustees of the University of Illinois      *
 *                                                                          *
 * NCSA Mosaic software, both binary and source (hereafter, Software) is    *
 * copyrighted by The Board of Trustees of the University of Illinois       *
 * (UI), and ownership remains with the UI.                                 *
 *                                                                          *
 * The UI grants you (hereafter, Licensee) a license to use the Software    *
 * for academic, research and internal business purposes only, without a    *
 * fee.  Licensee may distribute the binary and source code (if released)   *
 * to third parties provided that the copyright notice and this statement   *
 * appears on all copies and that no charge is associated with such         *
 * copies.                                                                  *
 *                                                                          *
 * Licensee may make derivative works.  However, if Licensee distributes    *
 * any derivative work based on or derived from the Software, then          *
 * Licensee will (1) notify NCSA regarding its distribution of the          *
 * derivative work, and (2) clearly notify users that such derivative       *
 * work is a modified version and not the original NCSA Mosaic              *
 * distributed by the UI.                                                   *
 *                                                                          *
 * Any Licensee wishing to make commercial use of the Software should       *
 * contact the UI, c/o NCSA, to negotiate an appropriate license for such   *
 * commercial use.  Commercial use includes (1) integration of all or       *
 * part of the source code into a product for sale or license by or on      *
 * behalf of Licensee to third parties, or (2) distribution of the binary   *
 * code or source code to third parties that need it to utilize a           *
 * commercial product sold or licensed by or on behalf of Licensee.         *
 *                                                                          *
 * UI MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR   *
 * ANY PURPOSE.  IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED          *
 * WARRANTY.  THE UI SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY THE    *
 * USERS OF THIS SOFTWARE.                                                  *
 *                                                                          *
 * By using or copying this Software, Licensee agrees to abide by the       *
 * copyright law and all other applicable laws of the U.S. including, but   *
 * not limited to, export control laws, and the terms of this license.      *
 * UI shall have the right to terminate this license immediately by         *
 * written notice upon Licensee's breach of, or non-compliance with, any    *
 * of its terms.  Licensee may be held legally responsible for any          *
 * copyright infringement that is caused or encouraged by Licensee's        *
 * failure to abide by the terms of this license.                           *
 *                                                                          *
 * Comments and questions are welcome and can be sent to                    *
 * mosaic-x@ncsa.uiuc.edu.                                                  *
 ****************************************************************************/

/* This document should be included in whatever source document
   sets up the Intrinsics.  It is in a separate file so it doesn't
   clutter up that file.  So sue me. */

#ifndef __MOSAIC_XRESOURCES_H__

/* ----------------------------- X Resources ------------------------------ */
#define offset(x) XtOffset (AppDataPtr, x)

static XtResource resources[] = {
  /* default font choice from Options menu choices */
  { "defaultFontChoice", "DefaultFontChoice", XtRString, sizeof (char *),
      offset (default_font_choice), XtRString, "TimesRegular" },

  /* Whether Mosaic reads and writes global history from 
     ~/.mosaic-global-history
     and thus provides persistent history tracking. */
  { "kiosk", "Kiosk", XtRBoolean, sizeof (Boolean), 
      offset (kiosk), XtRString, "False" },
  { "kioskNoExit", "KioskNoExit", XtRBoolean, sizeof (Boolean),
      offset (kioskNoExit), XtRString, "False" },
  { "useGlobalHistory", "UseGlobalHistory", XtRBoolean, sizeof (Boolean),
      offset (use_global_history), XtRString, "True" },
  /* Whether titles will be displayed wherever URL\'s are normally
     displayed. */
  { "displayURLsNotTitles", "DisplayURLsNotTitles", XtRBoolean, 
      sizeof (Boolean),
      offset (display_urls_not_titles), XtRString, "False" },
  /* Default width for a Document View window.  This will change as windows
     are cloned. */
  { "defaultWidth", "DefaultWidth", XtRInt, sizeof (int),
      offset (default_width), XtRString, "640" },
  /* Default height for a Document View window. */
  { "defaultHeight", "DefaultHeight", XtRInt, sizeof (int),
      offset (default_height), XtRString, "700" },
  /* Startup document. */
  { "homeDocument", "HomeDocument", XtRString, sizeof (char *),
      offset (home_document), XtRString, 
      HOME_PAGE_DEFAULT },
  { "confirmExit", "ConfirmExit", XtRBoolean, sizeof (Boolean),
      offset (confirm_exit), XtRString, "True" },
  { "lastwindowConfirm", "LastwindowConfirm", XtRBoolean, sizeof (Boolean),
      offset (lastwindow_confirm), XtRString, "True" },
  /* THIS USED TO BE mailCommand BUT IS NOW sendmailCommand. */
  { "sendmailCommand", "SendmailCommand", XtRString, sizeof (char *),
      offset (sendmail_command), XtRString, "/usr/lib/sendmail" },
  /* Ignore this.  Stealth feature. */
  { "mailFilterCommand", "MailFilterCommand", XtRString, sizeof (char *),
      offset (mail_filter_command), XtRString, NULL },
  { "printCommand", "PrintCommand", XtRString, sizeof (char *),
      offset (print_command), XtRString, "lpr" },
  { "cciPort","CCIPort",XtRInt,sizeof (int),
      offset (cciPort), XtRString, "0" },
  { "cciPortFileMode", "CCIPortFileMode", XtRInt, sizeof (int),
      offset (cciPortFileMode), XtRString, "384" },
  { "maxNumCCIConnect","MaxNumCCIConnect",XtRInt,sizeof (int),
      offset (max_num_of_cci_connections), XtRString, "1" },
  { "editCommand", "EditCommand", XtRString, sizeof (char *),
      offset (edit_command), XtRString, NULL },
  { "editCommandUseXterm", "EditCommandUseXterm", XtRBoolean, sizeof (Boolean),
      offset (edit_command_use_xterm), XtRString, "True" },
  { "xtermCommand", "XtermCommand", XtRString, sizeof (char *),
      offset (xterm_command), XtRString, 
#ifdef _AIX
      "aixterm -v",
#else /* not _AIX */
      "xterm",
#endif /* not _AIX */
    },
  { "globalHistoryFile", "GlobalHistoryFile", XtRString, 
      sizeof (char *),
      offset (global_history_file), XtRString, ".mosaic-global-history" },
  { "defaultHotlistFile", "DefaultHotlistFile", XtRString, 
      sizeof (char *),
      offset (default_hotlist_file), XtRString, ".mosaic-hotlist-default" },
  { "personalAnnotationDirectory", "PersonalAnnotationDirectory", XtRString, 
      sizeof (char *),
      offset (private_annotation_directory), XtRString, 
      ".mosaic-personal-annotations" },
  /* Whether selections should be fancy, by default. */
  { "fancySelections", "FancySelections", XtRBoolean,
      sizeof (Boolean), offset (default_fancy_selections), 
      XtRString, "False" },
  { "defaultAuthorName", "DefaultAuthorName", XtRString, sizeof (char *),
      offset (default_author_name), XtRString, NULL },
  { "buttonIcons", "ButtonIcons", XtRBoolean, sizeof (Boolean),
      offset (button_icons), XtRString, "False" },
  { "buttonBar", "ButtonBar", XtRBoolean, sizeof (Boolean),
      offset (button_bar), XtRString, "False" },
  { "signature", "Signature", XtRString, sizeof (char *),
      offset (signature), XtRString, NULL },
  { "annotationsOnTop", "AnnotationsOnTop", XtRBoolean, sizeof (Boolean),
      offset (annotations_on_top), XtRString, "False" },

  { "colorsPerInlinedImage", "ColorsPerInlinedImage", XtRInt, sizeof (int),
      offset (colors_per_inlined_image), XtRString, "50" },
  { "trackVisitedAnchors", "TrackVisitedAnchors", XtRBoolean, sizeof (Boolean),
      offset (track_visited_anchors), XtRString, "True" },

  { "uncompressCommand", "UncompressCommand", XtRString, sizeof (char *), 
      offset (uncompress_command), XtRString, "uncompress" },
  { "gunzipCommand", "GunzipCommand", XtRString, 
      sizeof (char *), offset (gunzip_command), XtRString, "gunzip -f -n" },

  { "recordCommandLocation", "RecordCommandLocation", XtRString, 
      sizeof (char *), offset (record_command_location), XtRString,
#ifdef __hpux
      "/usr/audio/bin/srecorder" },
#else
#if defined(__sgi)
      "/usr/sbin/recordaiff" },
#else
#if defined (sun)
      "/usr/demo/SOUND/record" },
#else
#if defined(nec_ews) || defined(_nec_ews) || defined(sony_news)
#ifdef RECORD
      RECORD },
#else /* RECORD */
      "record" },
#endif /* RECORD */
#else
      "/bin/true" },
#endif /* if nec_ews || _nec_ews || sony_news */
#endif /* if sun */
#endif /* if sgi */
#endif /* ifdef */
  { "recordCommand", "RecordCommand", XtRString, sizeof (char *),
      offset (record_command), XtRString,
#ifdef __hpux
      "srecorder -au" },
#else
#if defined(__sgi)
      "recordaiff -n 1 -s 8 -r 8000" },
#else
#if defined (sun)
      "record" },
#else
#if defined(nec_ews) || defined(_nec_ews) || defined(sony_news)
      "record" },
#else
      "true" },
#endif /* if nec_ews || _nec_ews || sony_news */
#endif /* if sun */
#endif /* if sgi */
#endif /* ifdef */

  { "gethostbynameIsEvil", "GethostbynameIsEvil", XtRBoolean, sizeof (Boolean),
      offset (gethostbyname_is_evil), XtRString, "False" },
  { "autoPlaceWindows", "AutoPlaceWindows", XtRBoolean, sizeof (Boolean),
      offset (auto_place_windows), XtRString, "True" },
  { "initialWindowIconic", "InitialWindowIconic", XtRBoolean, sizeof (Boolean),
      offset (initial_window_iconic), XtRString, "False" },

  { "tmpDirectory", "TmpDirectory", XtRString, sizeof (char *),
      offset (tmp_directory), XtRString, NULL },
  { "annotationServer", "AnnotationServer", XtRString, sizeof (char *),
      offset (annotation_server), XtRString, NULL },
  { "catchPriorAndNext", "CatchPriorAndNext", XtRBoolean, sizeof (Boolean),
      offset (catch_prior_and_next), XtRString, "False" },

  /* Proxy gateway resources */
  { "httpProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (http_proxy), XtRString, NULL },
#ifdef USE_SSL
  { "httpsProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (https_proxy), XtRString, NULL },
#endif /* USE_SSL */
  { "ftpProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (ftp_proxy), XtRString, NULL },
  { "waisProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (wais_proxy), XtRString, NULL },
  { "gopherProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (gopher_proxy), XtRString, NULL },
  { "newsProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (news_proxy), XtRString, NULL },
  { "fileProxy", "ProxyGateway", XtRString, sizeof (char *),
      offset (file_proxy), XtRString, NULL },
  { "noProxy", "NoProxyDomain", XtRString, sizeof (char *),
      offset (no_proxy), XtRString, NULL },

  { "fullHostname", "FullHostname", XtRString, sizeof (char *),
      offset (full_hostname), XtRString, NULL },
  { "reverseInlinedBitmapColors", "ReverseInlinedBitmapColors", XtRBoolean,
      sizeof (Boolean),
      offset (reverse_inlined_bitmap_colors), XtRString, "False" },
  { "confirmDeleteAnnotation", "ConfirmDeleteAnnotation", 
      XtRBoolean, sizeof (Boolean),
      offset (confirm_delete_annotation), XtRString, "True"},
  { "tweakGopherTypes", "TweakGopherTypes", XtRBoolean, sizeof (Boolean),
      offset (tweak_gopher_types), XtRString, "True" },

  /* --- new in 2.0 --- */
  { "trackPointerMotion", "TrackPointerMotion", XtRBoolean, sizeof (Boolean),
      offset (track_pointer_motion), XtRString, "True" },
  { "trackFullURLs", "TrackFullURLs", XtRBoolean, sizeof (Boolean),
      offset (track_full_url_names), XtRString, "True" },

  { "hdfMaxImageDimension", "HdfMaxImageDimension", XtRInt, sizeof (int),
      offset (hdf_max_image_dimension), XtRString, "400" },
  { "hdfMaxDisplayedDatasets", "HdfMaxDisplayedDatasets", XtRInt, sizeof (int),
      offset (hdf_max_displayed_datasets), XtRString, "15" },
  { "hdfMaxDisplayedAttributes", "HdfMaxDisplayedAttributes", XtRInt, sizeof (int),
      offset (hdf_max_displayed_attributes), XtRString, "10" },
  { "hdfPowerUser", "HdfPowerUser", XtRBoolean, sizeof (Boolean),
      offset (hdf_power_user), XtRString, "False" },

  { "docsDirectory", "DocsDirectory", XtRString, sizeof (char *),
      offset (docs_directory), XtRString, NULL },

  { "documentsMenuSpecfile", "DocumentsMenuSpecfile", XtRString, sizeof (char *),
      offset (documents_menu_specfile), XtRString, 
      "/usr/local/lib/mosaic/documents.menu" },

  { "reloadReloadsImages", "ReloadReloadsImages", XtRBoolean, sizeof (Boolean),
      offset (reload_reloads_images), XtRString, "False" },
  { "reloadPragmaNoCache", "ReloadPragmaNoCache", XtRBoolean, sizeof (Boolean),
      offset (reload_pragma_no_cache), XtRString, "False" },
  { "simpleInterface", "SimpleInterface", XtRBoolean, sizeof (Boolean),
      offset (simple_interface), XtRString, "False" },

  { "maxWaisResponses", "MaxWaisResponses", XtRInt, sizeof (int),
      offset (max_wais_responses), XtRString, "200" },
  { "delayImageLoads", "DelayImageLoads", XtRBoolean, sizeof (Boolean),
      offset (delay_image_loads), XtRString, "False" },

  { "useDefaultExtensionMap", "UseDefaultExtensionMap", 
      XtRBoolean, sizeof (Boolean),
      offset (use_default_extension_map), XtRString, "True" },
  { "globalExtensionMap", "GlobalExtensionMap", 
      XtRString, sizeof (char *),
      offset (global_extension_map), XtRString, GLOBAL_EXTENSION_MAP },
  { "personalExtensionMap", "PersonalExtensionMap", 
      XtRString, sizeof (char *),
      offset (personal_extension_map), XtRString, ".mime.types" },

  { "useDefaultTypeMap", "UseDefaultTypeMap", 
      XtRBoolean, sizeof (Boolean),
      offset (use_default_type_map), XtRString, "True" },
  { "globalTypeMap", "GlobalTypeMap", 
      XtRString, sizeof (char *),
      offset (global_type_map), XtRString, GLOBAL_TYPE_MAP },
  { "personalTypeMap", "PersonalTypeMap", 
      XtRString, sizeof (char *),
      offset (personal_type_map), XtRString, ".mailcap" },

  { "twirlingTransferIcon", "TwirlingTransferIcon", 
      XtRBoolean, sizeof (Boolean),
      offset (twirling_transfer_icon), XtRString, "True" },
  { "twirlIncrement", "TwirlIncrement", XtRInt, sizeof (int),
      offset (twirl_increment), XtRString, "4096" },
  { "twirlIconsIndex", "TwirlIconsIndex", XtRString, sizeof (char *),
      offset (twirl_icons_index), XtRString, "" },

  { "imageCacheSize", "ImageCacheSize", XtRInt, sizeof (int),
      offset (image_cache_size), XtRString, "2048" },

  { "protectMeFromMyself", "ProtectMeFromMyself", 
      XtRBoolean, sizeof (Boolean),
      offset (protect_me_from_myself), XtRString, "False" },

  { "printHeader", "PrintHeader",
      XtRBoolean, sizeof (Boolean),
      offset (print_header), XtRString, "True" },

  { "printHeaderTop", "PrintHeaderTop",
      XtRBoolean, sizeof (Boolean),
      offset (print_header_top), XtRString, "True" },

  { "printHeaderLeft", "PrintHeaderLeft",
      XtRBoolean, sizeof (Boolean),
      offset (print_header_left), XtRString, "False" },

#ifdef __sgi
  { "debuggingMalloc", "DebuggingMalloc", XtRBoolean, sizeof (Boolean),
      offset (debugging_malloc), XtRString, "False" },
#endif

#ifdef L10N
  { "fontSet", "FontSet", XtRString, sizeof(char *),
      offset(FontSet), XtRString, NULL },

  { "italicFontSet", "ItalicFontSet", XtRString, sizeof(char *),
      offset(italicFontSet), XtRString, NULL },

  { "boldFontSet", "BoldFontSet", XtRString, sizeof(char *),
      offset(boldFontSet), XtRString, NULL },

  { "fixedFontSet", "FixedFontSet", XtRString, sizeof(char *),
      offset(fixedFontSet), XtRString, NULL },

  { "fixedBoldFontSet", "FixedBoldFontSet", XtRString, sizeof(char *),
      offset(fixedboldFontSet), XtRString, NULL },

  { "fixedItalicFontSet", "FixedItalicFontSet", XtRString, sizeof(char *),
      offset(fixeditalicFontSet), XtRString, NULL },

  { "header1FontSet", "Header1FontSet", XtRString, sizeof(char *),
      offset(header1FontSet), XtRString, NULL },

  { "header2FontSet", "Header2FontSet", XtRString, sizeof(char *),
      offset(header2FontSet), XtRString, NULL },

  { "header3FontSet", "Header3FontSet", XtRString, sizeof(char *),
      offset(header3FontSet), XtRString, NULL },

  { "header4FontSet", "Header4FontSet", XtRString, sizeof(char *),
      offset(header4FontSet), XtRString, NULL },

  { "header5FontSet", "Header5FontSet", XtRString, sizeof(char *),
      offset(header5FontSet), XtRString, NULL },

  { "header6FontSet", "Header6FontSet", XtRString, sizeof(char *),
      offset(header6FontSet), XtRString, NULL },

  { "addressFontSet", "AddressFontSet", XtRString, sizeof(char *),
      offset(addressFontSet), XtRString, NULL },

  { "plainFontSet", "PlainFontSet", XtRString, sizeof(char *),
      offset(plainFontSet), XtRString, NULL },

  { "plainBoldFontSet", "PlainBoldFontSet", XtRString, sizeof(char *),
      offset(plainboldFontSet), XtRString, NULL },

  { "plainItalicFontSet", "PlainItalicFontSet", XtRString, sizeof(char *),
      offset(plainitalicFontSet), XtRString, NULL },

  { "textfieldFontSet", "TextfieldFontSet", XtRString, sizeof(char *),
      offset(textfieldFontSet), XtRString, NULL },

  { "supSubFontSet", "SupSubFontSet", XtRString, sizeof(char *),
      offset(supSubFontSet), XtRString, NULL },

  { "defaultCharset", "DefaultCharset", XtRString, sizeof (char *),
      offset (default_charset), XtRString, NULL },

  { "defaultBidirectionality", "DefaultBidirectionality", XtRString,
      sizeof(char *), offset(default_bidirectionality), XtRString, NULL },

  { "keepDocumentCharset", "KeepDocumentCharset", XtRBoolean,
      sizeof(Boolean), offset(keep_document_charset), XtRString, "True" },

  { "defaultAcceptLanguages", "DefaultAcceptLanguages", XtRString,
       sizeof (char *), offset (default_accept_languages), XtRString, NULL },

#ifdef MOTIF_I18N
  { "halfsizedTextfield", "HalfSizedTextfield", XtRBoolean,
       sizeof (Boolean), offset (half_sized_textfield), XtRString, "True" },
#endif /* MOTIF_I18N */

  { "kinsokuEol", "KinsokuEol", XtRString,
       sizeof (char *), offset (kinsoku_eol), XtRString, '\0' },

  { "kinsokuBol", "KinsokuBol", XtRString,
       sizeof (char *), offset (kinsoku_bol), XtRString, '\0' },

  { "ignoreSpaceBetweenJapanese", "IgnoreSpaceBetweenJapanese", XtRBoolean,
       sizeof (Boolean), offset (ignore_space_between_japanese),
       XtRString, "False" },

  { "ignoreLFBetweenJapanese", "IgnoreLFBetweenJapanese", XtRBoolean,
       sizeof (Boolean), offset (ignore_lf_between_japanese),
       XtRString, "True" },
#endif /* L10N */

  /* adjustment connection timeout value(by sec) */
  { "connectTimeout", "ConnectTimeout", XtRInt, sizeof (int),
      offset (connectTimeout), XtRString, "100" },
#ifdef DISABLE_TABLE
  { "disableTable", "DisableTable", XtRBoolean,
      sizeof (Boolean), offset (default_disable_table), 
      XtRString, "True" },
#endif /* DISABLE_TABLE */
};

#undef offset

static XrmOptionDescRec options[] = {
  {"-fn",     "*fontList",            XrmoptionSepArg, NULL},
  {"-ft",     "*XmText*fontList",     XrmoptionSepArg, NULL},
  {"-fm",     "*menubar*fontList",    XrmoptionSepArg, NULL},
  {"-home",   "*homeDocument",        XrmoptionSepArg, NULL},
  {"-ngh",    "*useGlobalHistory",    XrmoptionNoArg,  "False"},
  /* Let Xt strip out -mono from stuff it considers interesting. */
  {"-mono",   "*nothingUseful",       XrmoptionNoArg,  "True"},
  {"-color",  "*nothingUseful",       XrmoptionNoArg,  "True"},
  {"-ghbnie", "*gethostbynameIsEvil", XrmoptionNoArg,  "True"},
  {"-iconic", "*initialWindowIconic", XrmoptionNoArg,  "True"},
  {"-i",      "*initialWindowIconic", XrmoptionNoArg,  "True"},
  /* New in 1.1 */
  /* -nd isn't documented since defaults in the widget still take effect,
     so the benefits of using it are kinda iffy (as if they weren't 
     anyway)... */
  {"-nd",     "*nothingUseful",       XrmoptionNoArg,  "True"},
  {"-tmpdir", "*tmpDirectory",        XrmoptionSepArg, NULL},
  {"-dil",    "*delayImageLoads",     XrmoptionNoArg,  "True"},
  {"-ics",    "*imageCacheSize",      XrmoptionSepArg, NULL},
  {"-protect","*protectMeFromMyself", XrmoptionNoArg,  "True"},
  {"-kraut",  "*mailFilterCommand",   XrmoptionNoArg,  "kraut"},
#ifdef __sgi
  {"-dm",     "*debuggingMalloc",     XrmoptionNoArg,  "True"},
#endif
  {"-kiosk",  "*kiosk",               XrmoptionNoArg,  "True"},
  {"-kioskNoExit",  "*kioskNoExit",   XrmoptionNoArg,  "True"},
  {"-cciPort",  "*cciPort",   	      XrmoptionSepArg,  "0"},
  {"-maxNumCCIConnect",  "*maxNumCCIConnect",  XrmoptionSepArg,  "0"},
#ifdef L10N
  {"-charset", "*defaultCharset",     XrmoptionSepArg, NULL},
  {"-bidirectionality", "*defaultBidirectionality", XrmoptionSepArg, NULL},
  {"-acceptlanguages", "*defaultAcceptLanguages", XrmoptionSepArg, NULL},
#endif /* L10N */
};

static String color_resources[] = {
  "*XmLabel*fontList:   		-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmLabelGadget*fontList:	-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmScale*fontList:   		-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmBulletinBoard*labelFontList:	-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*optionmenu.XmLabelGadget*fontList:	-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmPushButton*fontList:		-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmPushButtonGadget*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmToggleButton*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmToggleButtonGadget*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*optionmenu*fontList:		-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmIconGadget*fontList:		-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmBulletinBoard*buttonFontList: -*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*menubar*fontList:   		-*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmPushButton*fontList:  -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmLabelGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmPushButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmCascadeButton*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmCascadeButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmCascadeButton*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmCascadeButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmToggleButton*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmToggleButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*pulldownmenu*fontList:	-*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmList*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
#if defined(ultrix) || defined(__alpha) || defined(VMS)
  "*XmText.fontList:      -adobe-courier-medium-r-normal-*-14-*-iso8859-1",
  "*XmTextField.fontList: -adobe-courier-medium-r-normal-*-14-*-iso8859-1",
#else /* ultrix || __alpha || VMS */
  "*XmText.fontList:      -*-lucidatypewriter-medium-r-normal-*-14-*-iso8859-1",
#ifdef IXIMOTIF1_2
  "*XmTextField.fontList: -*-*-*-r-normal-*-16-*-*-*-*-*-iso8859-1",
#else /* IXIMOTIF1_2 */
  "*XmTextField.fontList: -*-lucidatypewriter-medium-r-normal-*-14-*-iso8859-1",
#endif /* IXIMOTIF1_2 */
#endif /* ultrix || __alpha || VMS */
  
  "*optionmenu*marginHeight: 	0",
  "*optionmenu*marginTop: 		5",
  "*optionmenu*marginBottom: 	5",
  "*optionmenu*marginWidth: 	5",
  "*pulldownmenu*XmPushButton*marginHeight:	1",
  "*pulldownmenu*XmPushButton*marginWidth:	1",
  "*pulldownmenu*XmPushButton*marginLeft:	3",
  "*pulldownmenu*XmPushButton*marginRight:	3",
  "*XmList*listMarginWidth:        3",
  "*menubar*marginHeight: 		1",
  "*menubar.marginHeight: 		0",
  "*menubar*marginLeft:  		1",
  "*menubar.spacing:  		7",
  "*XmMenuShell*marginLeft:  	3",
  "*XmMenuShell*marginRight:  	4",
  "*XmMenuShell*XmToggleButtonGadget*spacing: 	 2",
  "*XmMenuShell*XmToggleButtonGadget*marginHeight:  0",
  "*XmMenuShell*XmToggleButtonGadget*indicatorSize: 12",
  "*XmMenuShell*XmLabelGadget*marginHeight: 4",
  "*XmToggleButtonGadget*spacing: 	4",
  "*XmToggleButton*spacing: 	4",
  "*XmScrolledWindow*spacing: 	0",
  "*XmScrollBar*width: 		        18",
  "*XmScrollBar*height: 		18",
  "*Hbar*height:                        22",
  "*Vbar*width:                         22",
  "*XmScale*scaleHeight: 		20",
  "*XmText*marginHeight:		4",
  "*fsb*XmText*width:                   420",
  "*fsb*XmTextField*width:                   420",
#ifdef IXIMOTIF1_2
  "*fsb.textColumns:                    26",
#endif /* IXIMOTIF1_2 */
  "*fillOnSelect:			True",
  "*visibleWhenOff:		        True",
  "*XmText*highlightThickness:		0",
  "*XmTextField*highlightThickness:	0",
  "*XmPushButton*highlightThickness:	0",
  "*XmScrollBar*highlightThickness:     0",
  "*highlightThickness:	                0",
  /* "*geometry:                           +400+200", */
  "*keyboardFocusPolicy:                pointer",
  
  "*TitleFont: -adobe-times-bold-r-normal-*-24-*-*-*-*-*-iso8859-1",
  "*Font: -adobe-times-medium-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*ItalicFont: -adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1",
  "*BoldFont: -adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*FixedFont: -adobe-courier-medium-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*Header1Font: -adobe-times-bold-r-normal-*-24-*-*-*-*-*-iso8859-1",
  "*Header2Font: -adobe-times-bold-r-normal-*-18-*-*-*-*-*-iso8859-1",
  "*Header3Font: -adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*Header4Font: -adobe-times-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*Header5Font: -adobe-times-bold-r-normal-*-12-*-*-*-*-*-iso8859-1",
  "*Header6Font: -adobe-times-bold-r-normal-*-10-*-*-*-*-*-iso8859-1",
  "*AddressFont: -adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1",
  "*PlainFont: -adobe-courier-medium-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*ListingFont: -adobe-courier-medium-r-normal-*-12-*-*-*-*-*-iso8859-1",
  "*SupSubFont: -adobe-times-medium-r-normal-*-10-*-*-*-*-*-iso8859-1",

  "*AnchorUnderlines:                   1",
  "*VisitedAnchorUnderlines:            1",
  "*DashedVisitedAnchorUnderlines:      True",
  "*VerticalScrollOnRight:              True",

#ifdef __sgi
  "*Foreground:			 	#000000000000",
  "*XmScrollBar*Foreground:             #afafafafafaf",
  "*Background:                         #afafafafafaf",
  "*XmList*Background:     		#afafafafafaf",
  "*XmText*Background:	 	        #afafafafafaf",
  "*TroughColor:                        #545454545454",
  "*XmSelectionBox*Background:	 	#afafafafafaf",
  "*XmMessageBox*Background:	 	#afafafafafaf",
  "*XmLabel*Foreground:                 #000000000000",
  "*XmToggleButton*Foreground:          #1d1d15155b5b",
  "*XmPushButton*Foreground:            #000000000000",
  "*logo*Foreground:                    #1d1d15155b5b",
  "*searchindex_button*Foreground:      #1d1d15155b5b",
  "*XmTextField*Background: 		#8c8c8c8c8c8c",
  "*SelectColor:			#ffffffff0000",
  "*HighlightColor:		 	#afafafafafaf",

  "*TopShadowColor:                     #dfdfdfdfdfdf",
  "*XmList*TopShadowColor:              #dfdfdfdfdfdf",
  "*XmText*TopShadowColor:              #dfdfdfdfdfdf",
  "*XmSelectionBox*TopShadowColor:      #dfdfdfdfdfdf",
  "*XmMessageBox*TopShadowColor:        #dfdfdfdfdfdf",
  
  "*visitedAnchorColor:                 #272705055b5b",
  "*anchorColor:                        #00000000b0b0",
  "*activeAnchorFG:                     #ffff00000000",
  "*activeAnchorBG:                     #afafafafafaf",
#else /* not sgi */
  "*Foreground:			 	#000000000000",
  "*XmScrollBar*Foreground:             #bfbfbfbfbfbf",
  "*XmLabel*Foreground:                 #000000000000",
  "*XmToggleButton*Foreground:          #1d1d15155b5b",
  "*XmPushButton*Foreground:            #000000000000",
  "*logo*Foreground:                    #1d1d15155b5b",
  "*searchindex_button*Foreground:      #1d1d15155b5b",

  "*Background:                         #bfbfbfbfbfbf",

  "*XmList*Background:     		#bfbfbfbfbfbf",
  "*XmText*Background:	 	        #bfbfbfbfbfbf",
  "*XmSelectionBox*Background:	 	#bfbfbfbfbfbf",
  "*XmMessageBox*Background:	 	#bfbfbfbfbfbf",
  "*XmTextField*Background: 		#9c9c9c9c9c9c",

  "*TopShadowColor:                     #e7e7e7e7e7e7",
  "*XmList*TopShadowColor:              #e7e7e7e7e7e7",
  "*XmText*TopShadowColor:              #e7e7e7e7e7e7",
  "*XmSelectionBox*TopShadowColor:      #e7e7e7e7e7e7",
  "*XmMessageBox*TopShadowColor:        #e7e7e7e7e7e7",
  
  "*TroughColor:                        #646464646464",
  "*SelectColor:			#ffffffff0000",
  "*HighlightColor:		 	#bfbfbfbfbfbf",

  /* Remember to update this in the app-defaults file. */
  "*visitedAnchorColor:                 #3f3f0f0f7b7b",
  "*anchorColor:                        #00000000b0b0",
  "*activeAnchorFG:                     #ffff00000000",
  "*activeAnchorBG:                     #bfbfbfbfbfbf",
#endif

#ifdef L10N
  "*FontSet:		-adobe-times-medium-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*italicFontSet:	-adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*boldFontSet:	-adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fixedFontSet:	-adobe-courier-medium-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fixedBoldFontSet:	-adobe-courier-bold-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fixedItalicFontSet:	-adobe-courier-medium-o-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header1FontSet:	-adobe-times-bold-r-normal-*-24-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-24-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-24-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-24-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-24-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-24-*-*-*-*-*-ksc5601.1987-*",
  "*header2FontSet:	-adobe-times-bold-r-normal-*-18-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header3FontSet:	-adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header4FontSet:	-adobe-times-bold-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header5FontSet:	-adobe-times-bold-r-normal-*-12-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header6FontSet:	-adobe-times-bold-r-normal-*-10-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*addressFontSet:	-adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*plainFontSet:	-adobe-courier-medium-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*plainBoldFontSet:	-adobe-courier-bold-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*plainItalicFontSet:	-adobe-courier-medium-o-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*SupSubFontSet:	-adobe-times-bold-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
#ifdef IXIMOTIF1_2
  "*textfieldFontSet:	-*-fixed-*-*-*-*-16-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-*-*-*-*-16-*-*:jisx0208.1983,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*:,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*:,\
			-*-mincho-*-*-*-*-16-*-*-*-*-*-ksc5601.1987-*:",
#else /* IXIMOTIF1_2 */
  "*textfieldFontSet:	-*-fixed-*-*-*-*-16-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-*-*-*-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-*-*-*-*-16-*-*-*-*-*-ksc5601.1987-*",
#endif /* IXIMOTIF1_2 */
  "*fsb.filterLabelString:	Filter",
  "*fsb.dirListLabelString:	Directories",
  "*fsb.fileListLabelString:	Files",
  "*fsb.applyLabelString:	Filter",
  "*cancelLabelString:		Cancel",
  "*okLabelString:		OK",
#endif /* L10N */
 
  NULL,
};

static String mono_resources[] = {
  "*XmLabel*fontList:   		-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmLabelGadget*fontList:	-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmScale*fontList:   		-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmBulletinBoard*labelFontList:	-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*optionmenu.XmLabelGadget*fontList:	-*-helvetica-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*XmPushButton*fontList:		-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmPushButtonGadget*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmToggleButton*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmToggleButtonGadget*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*optionmenu*fontList:		-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmIconGadget*fontList:		-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*XmBulletinBoard*buttonFontList: -*-helvetica-medium-r-normal-*-14-*-iso8859-1",
  "*menubar*fontList:   		-*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmPushButton*fontList:  -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmLabelGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmPushButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmCascadeButton*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmCascadeButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmCascadeButton*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmCascadeButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmToggleButton*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmMenuShell*XmToggleButtonGadget*fontList: -*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*pulldownmenu*fontList:	-*-helvetica-bold-o-normal-*-14-*-iso8859-1",
  "*XmList*fontList:	-*-helvetica-medium-r-normal-*-14-*-iso8859-1",
#if defined(ultrix) || defined(__alpha) || defined(VMS)
  "*XmText.fontList:	  -adobe-courier-medium-r-normal-*-14-*-iso8859-1",
  "*XmTextField.fontList: -adobe-courier-medium-r-normal-*-14-*-iso8859-1",
#else /* ultrix || __alpha || VMS */
  "*XmText.fontList:      -*-lucidatypewriter-medium-r-normal-*-14-*-iso8859-1",
#ifdef IXIMOTIF1_2
  "*XmTextField.fontList: -*-*-*-r-normal-*-16-*-*-*-*-*-iso8859-1",
#else /* IXIMOTIF1_2 */
  "*XmTextField.fontList: -*-lucidatypewriter-medium-r-normal-*-14-*-iso8859-1",
#endif /* IXIMOTIF1_2 */
#endif /* ultrix || __alpha || VMS */

  "*optionmenu*marginHeight: 	0",
  "*optionmenu*marginTop: 		5",
  "*optionmenu*marginBottom: 	5",
  "*optionmenu*marginWidth: 	5",
  "*pulldownmenu*XmPushButton*marginHeight:	1",
  "*pulldownmenu*XmPushButton*marginWidth:	1",
  "*pulldownmenu*XmPushButton*marginLeft:	3",
  "*pulldownmenu*XmPushButton*marginRight:	3",
  "*XmList*listMarginWidth:        3",
  "*menubar*marginHeight: 		1",
  "*menubar.marginHeight: 		0",
  "*menubar*marginLeft:  		1",
  "*menubar.spacing:  		7",
  "*XmMenuShell*marginLeft:  	3",
  "*XmMenuShell*marginRight:  	4",
  "*XmMenuShell*XmToggleButtonGadget*spacing: 	 2",
  "*XmMenuShell*XmToggleButtonGadget*marginHeight:  0",
  "*XmMenuShell*XmToggleButtonGadget*indicatorSize: 12",
  "*XmMenuShell*XmLabelGadget*marginHeight: 4",
  "*XmToggleButtonGadget*spacing: 	4",
  "*XmToggleButton*spacing: 	4",
  "*XmScrolledWindow*spacing: 	0",
  "*XmScrollBar*width: 		        18",
  "*XmScrollBar*height: 		18",
  "*Hbar*height:                        22",
  "*Vbar*width:                         22",
  "*XmScale*scaleHeight: 		20",
  "*XmText*marginHeight:		4",
  "*fsb*XmText*width:                   420",
  "*fsb*XmTextField*width:                   420",
  "*fillOnSelect:			True",
  "*visibleWhenOff:		        True",
  "*XmText*highlightThickness:		0",
  "*XmTextField*highlightThickness:	0",
  "*XmPushButton*highlightThickness:	0",
  "*XmScrollBar*highlightThickness:     0",
  "*highlightThickness:	                0",
  /* "*geometry:                           +400+200", */
  "*keyboardFocusPolicy:                pointer",

  "*TitleFont: -adobe-times-bold-r-normal-*-24-*-*-*-*-*-iso8859-1",
  "*Font: -adobe-times-medium-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*ItalicFont: -adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1",
  "*BoldFont: -adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*FixedFont: -adobe-courier-medium-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*Header1Font: -adobe-times-bold-r-normal-*-24-*-*-*-*-*-iso8859-1",
  "*Header2Font: -adobe-times-bold-r-normal-*-18-*-*-*-*-*-iso8859-1",
  "*Header3Font: -adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1",
  "*Header4Font: -adobe-times-bold-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*Header5Font: -adobe-times-bold-r-normal-*-12-*-*-*-*-*-iso8859-1",
  "*Header6Font: -adobe-times-bold-r-normal-*-10-*-*-*-*-*-iso8859-1",
  "*AddressFont: -adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1",
  "*PlainFont: -adobe-courier-medium-r-normal-*-14-*-*-*-*-*-iso8859-1",
  "*ListingFont: -adobe-courier-medium-r-normal-*-12-*-*-*-*-*-iso8859-1",
  "*SupSubFont: -adobe-courier-medium-r-normal-*-10-*-*-*-*-*-iso8859-1",

  "*Foreground:                         black",
  "*Background:                         white",
  "*TopShadowColor:                     black",
  "*BottomShadowColor:                  black",
  "*anchorColor:                        black",
  "*visitedAnchorColor:                 black",
  "*activeAnchorFG:                     black",
  "*activeAnchorBG:                     white",
  "*TroughColor:                        black",
  "*SelectColor:                        black",
  "*AnchorUnderlines:                   1",
  "*VisitedAnchorUnderlines:            1",
  "*DashedVisitedAnchorUnderlines:      True",
  "*VerticalScrollOnRight:              True",

#ifdef L10N
  "*FontSet:		-adobe-times-medium-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*italicFontSet:	-adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*boldFontSet:	-adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fixedFontSet:	-adobe-courier-medium-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fixedBoldFontSet:	-adobe-courier-bold-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fixedItalicFontSet:	-adobe-courier-medium-o-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header1FontSet:	-adobe-times-bold-r-normal-*-24-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-24-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-24-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-24-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-24-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-24-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-24-*-*-*-*-*-ksc5601.1987-*",
  "*header2FontSet:	-adobe-times-bold-r-normal-*-18-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header3FontSet:	-adobe-times-bold-r-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header4FontSet:	-adobe-times-bold-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header5FontSet:	-adobe-times-bold-r-normal-*-12-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*header6FontSet:	-adobe-times-bold-r-normal-*-10-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*addressFontSet:	-adobe-times-medium-i-normal-*-17-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-medium-r-normal-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*plainFontSet:	-adobe-courier-medium-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*plainBoldFontSet:	-adobe-courier-bold-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*plainItalicFontSet:	-adobe-courier-medium-o-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*SupSubFontSet:	-adobe-times-bold-r-normal-*-14-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-14-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-14-*-*-*-*-*-koi-1,\
			-misc-fixed-medium-r-normal-*-14-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-medium-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-gothic-medium-r-normal-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*textfieldFontSet:	-*-fixed-*-*-*-*-16-*-*-*-*-*-iso8859-1,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-2,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-3,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-4,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-5,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-7,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-8,\
			-*-*-*-*-*-*-16-*-*-*-*-*-iso8859-9,\
			-*-*-*-*-*-*-16-*-*-*-*-*-koi-1,\
			-*-fixed-*-*-*-*-16-*-*-*-*-*-jisx0208.1983-*,\
			-*-*-delicate-r-normal-*-16-*-*-*-*-*-gb2312.1980-*,\
			-*-*-medium-r-normal-*-15-*-*-*-*-*-big5*-*,\
			-*-mincho-*-*-*-*-16-*-*-*-*-*-ksc5601.1987-*",
  "*fsb.filterLabelString:		Filter",
  "*fsb.dirListLabelString:		Directories",
  "*fsb.fileListLabelString:		Files",
  "*fsb.applyLabelString:		Filter",
  "*cancelLabelString:			Cancel",
  "*okLabelString:			OK",
#endif /* L10N */
  
  NULL,
};

#define __MOSAIC_XRESOURCES_H__
#endif /* __MOSAIC_XRESOURCES_H__ */
