home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / Documentation / HTML / TG787v_de / wwhelp / wwhimpl / common / private / options.js < prev    next >
Text File  |  2008-02-07  |  2KB  |  54 lines

  1. // Copyright (c) 2000-2001 Quadralay Corporation.  All rights reserved.
  2. //
  3.  
  4. function  WWHCommonSettings_Object()
  5. {
  6.   this.mbForceJavaScript = true;
  7.  
  8.   this.mbSyncContentsEnabled  = true;
  9.   this.mbPrevEnabled          = true;
  10.   this.mbNextEnabled          = true;
  11.   this.mbRelatedTopicsEnabled = false;
  12.   this.mbEmailEnabled         = false;
  13.   this.mbPrintEnabled         = true;
  14.   this.mbBookmarkEnabled      = false;
  15.  
  16.   this.mEmailAddress = "documentation.speedtouch@thomson.com";
  17.  
  18.   this.mRelatedTopics = new WWHCommonSettings_RelatedTopics_Object();
  19.   this.mPopup         = new WWHCommonSettings_Popup_Object();
  20.  
  21.   this.mbHighlightingEnabled        = true;
  22.   this.mHighlightingForegroundColor = "#FFFFFF";
  23.   this.mHighlightingBackgroundColor = "#0073AE";
  24. }
  25.  
  26. function  WWHCommonSettings_RelatedTopics_Object()
  27. {
  28.   this.mTitleFontStyle       = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 10pt";
  29.   this.mTitleForegroundColor = "#FFFFFF";
  30.   this.mTitleBackgroundColor = "#999999";
  31.  
  32.   this.mFontStyle = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 10pt";
  33.  
  34.   this.mWidth = 250;
  35.  
  36.   this.mForegroundColor = "#003399";
  37.   this.mBackgroundColor = "#FFFFFF";
  38.   this.mBorderColor     = "#666666";
  39.  
  40.   this.mbInlineEnabled = false;
  41.  
  42.   this.mInlineFontStyle = "font-family: Verdana, Arial, Helvetica, sans-serif ; font-size: 10pt";
  43.  
  44.   this.mInlineForegroundColor = "#003366";
  45. }
  46.  
  47. function  WWHCommonSettings_Popup_Object()
  48. {
  49.   this.mWidth = 400;
  50.  
  51.   this.mBackgroundColor = "#E7E7E8";
  52.   this.mBorderColor     = "#B32317";
  53. }
  54.