//////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1998, Siebel Systems, Inc., All rights reserved.
//
// FILE:       swemessageresources_en_us.js
//
// CREATOR:    Anil Mukundan
//
// DESCRIPTION
//    
//    This file contains the messag keys and the message texts for the messages
//    used in the Siebel Web Engine JavaScript code.
//    This file is to be generated by the Message Extract program from the
//    messages defined in the Siebel Database.
//
//////////////////////////////////////////////////////////////////////////////

var _SWEMsgAry = new Array();
var _SWEBMsgInit = false;

function _SWEGetGlobalMsgAry()
{
   if (! _SWEBMsgInit)
   {
      _SWEBMsgInit = true;

      _SWEMsgAry["SWESelectRecFirst"]     = "Please select a record first.";
      _SWEMsgAry["SWENoRecToDelete"]      = "No Records to Delete";
      _SWEMsgAry["SWEMoreDrilldownInfo"]  = "Insufficient information to perform drilldown.";
      _SWEMsgAry["SWEConfirmDelete"]      = "Are you sure you want to delete the current record?";
      _SWEMsgAry["SWEConfirmDeletes"]     = "Are you sure you want to delete the selected records?";
   }
   return _SWEMsgAry;
}
      
function _SWEGetMessage(key)
{
   ary = _SWEGetGlobalMsgAry();
   return ary[key];
}
