<!--
//
// language literals by screen...
//   first level is screen identity. 
//   second level is the literal within screen
//   third level series of literals by language
//   the first literal in the array in the idnetity of the frame if the window 
//   is part of a frame set
//
//    due to the number of literals some screens have their own literal area as 
//    follows
//
//     instr.htm - instr.js
//
//
var scrId = 0 
var fr_ident = "" 
var fldId = 0 
var lgId = 0 
var snglQuote = "'" 
var dblQuote = '"' 
var LangLits = [ 
// screen 0 -- window-sgmain.htm frame-header file-sghead.htm 
    [
// screen 0 field 0 
      ["header",
      "Spiritual Gifts Introduction", 
      "Introduction Spirituelle De Cadeaux",
      "Spiritual Gifts Introduction",
      "Spiritual Gifts Introduction",
      "Spiritual Gifts Introduction",
      "Spiritual Gifts Introduction",
      "Spiritual Gifts Introduction",
      "Spiritual Gifts Introduction"]
    ],

// screen 1 -- window sgmain.htm frameleftFrame file-left.htm 
    [
// screen 1 field 0 
      ["left", 
      "Introduction", 
      "Introduction",
      null, null, null, null, null, null],
// screen 1 field 1 
      ["left", 
      "If you have not participated in the survey before we suggest that you take a couple of minutes and review the introduction.", 
      "Si vous n'avez pas participé à l'aperçu avant que nous proposions que vous prenniez un couple des minutes et passiez en revue l'introduction.", 
      null, null, null, null, null, null],
      ["left", 
      "How to use this tool.", 
      "Comment utiliser cet outil.", 
      null, null, null, null, null, null],
      ["left", 
      "Click Here", 
      "Clic ici", 
      null, null, null, null, null, null],
      ["left", 
      "Direct to evaluation.", 
      "Dirigez vers l'évaluation.", 
      null, null, null, null, null, null],
      ["left", 
      "Click Here", 
      "Clic ici", 
      null, null, null, null, null, null],
      [null, null, null, null, null, null, null, null, null]
    ], 
// screen 2 -- window gifts.htm 
    [
// screen 2 field 0 
      ["gifts", 
      "Spiritual Gifts Evaluation", 
      "Évaluation Spirituelle De Cadeaux",
      null, null, null, null, null, null],
// screen 2 field 1 
      ["gifts", 
      "Select one", 
      "Choisissez un", 
      null, null, null, null, null, null],
// screen 2 field 2 
      ["gifts", 
      "Always", 
      "Toujours", 
      null, null, null, null, null, null],
// screen 2 field 3 
      ["gifts", 
      "Usually", 
      "Habituellement", 
      null, null, null, null, null, null],
// screen 2 field 4 
      ["gifts", 
      "Sometimes", 
      "Parfois", 
      null, null, null, null, null, null],
// screen 2 field 5 
      ["gifts", 
      "Never", 
      "Jamais", 
      null, null, null, null, null, null],
// screen 2 field 6 
      ["gifts", 
      "Pervious Page", 
      "Page De Pervious", 
      null, null, null, null, null, null],
// screen 2 field 7 
      ["gifts", 
      "Next Page", 
      "Prochaine Page", 
      null, null, null, null, null, null],
// screen 2 field 8 
      ["gifts", 
      "Close this window", 
      "Fermez cette fenêtre", 
      null, null, null, null, null, null],
// screen 2 field 9 
      ["gifts", 
      "Caution:", 
      "Attention:", 
      null, null, null, null, null, null],
// screen 2 field 10 
      ["gifts", 
      "If you close this window all scoring will be lost.", 
      "Si vous vous fermez cette fenêtre marquant tout sera perdue.", 
      null, null, null, null, null, null],
// screen 2 field 11 
      ["gifts", 
      "Evaluate My Gifts", 
      "Évaluez Mes Cadeaux", 
      null, null, null, null, null, null],
      [null, null, null, null, null, null, null, null, null]
    ] 
  ]

function lgGet(scrID, fldId, lgId)
  {
  var args = lgGet.arguments 
  scrId = lgGet.arguments[0]
  fldId = lgGet.arguments[1]
  lgId = lgGet.arguments[2]
// alert ("arguments 1 = " + lgGet.arguments[0] + "/ 2 = " +  lgGet.arguments[1] + "/ 3 = " +  lgGet.arguments[2]);
// alert ("scrId=" + scrId + " fldId=" + fldId + " lgId=" + lgId + " LangLits=" + LangLits [scrId][fldId][lgId]);
  psLit = LangLits [scrId][fldId][lgId];
  return (psLit);
  }
