
    g_errMsg = new Array (
      'You\'ve reached the bottom of the document.',
      'You\'ve reached the top of the document.',
      'Please enter a page number',
      'Please enter a valid page number between [[startPg]] and [[maxRec]]',
      'You must hold down the Control key and select \n the "download" button to download the [[eTitle]].\n In Netscape, select Save This Link As and then Source from the Format pull down.\n In IE, select Download Link To Desktop.',
      'You must hold down the Shift key and select \n the "download" button to download the [[eTitle]].',
      'Please enter a range of pages.',
      'Please make sure that the start of the page range is less than the ending.',
      'Illegal start of print range.  Please do not use 0 or lower.',
      'Illegal end of print range.  Please do not use higher than [[m]].',
      'Please enter the e-mail recipient\'s address and e-mail sender\'s address.',
      'Note that all fields are required.\nPlease enter the subject.',
      'Your browser does not support automated print. If you are using a Mac, we suggest you select the page, click in the page with the mouse, then hold down the Apple + P keys to print.',
      'Please enter some search terms',
      'Invalid Page Number \'[[pgnum]]\'.  Please enter a valid page number.',
      'For best printing quality, please set your page orientation to landscape.',
      'It is recommended that no more than 10 pages be included in the print range.  For larger print jobs, please use the \'Entire Document\' option.',
      'Please verify that the recipient\'s\ne-mail address is in the format of a@b.c.\nAlso, separate multiple addresses with a comma.\n',
      'Please verify that the sender\'s\ne-mail address is in the format of a@b.c.\n\n',
      'Please enter the Sender\'s e-mail address.\n',
      'Invalid image type submitted for exe',
      'This Mobular Engine(tm); has expired.\n\nPlease contact Mobular Technologies(tm), Inc.\nfor more information.\n\nhttp://www.mobular.com/',
      'Click to go to the Excel version',
      'click here to close',
      'Searching...',
      'Mobular Engine search completed in',
      'This feature does not apply for the desktop version.',
      'This feature requires that you be online.',
      'Online Viewing solutions are supported on the following browsers:\n    - Internet Explorer 6\n    - Internet Explorer 7\n    - Firefox 1.5\n    - Firefox 2\n    - Safari 3.2.1.\n\n    Some features of this solution may not operate as expected.  For the best Online Viewing experience please utilize a supported browser.',
      'Loading, please be patient ...',
      'Searching, please be patient ...'
    );
 	try {
 		if ( eengine ) {
 			if ( eengine.erMsg.length == 0 ) {
 				eengine.erMsg = g_errMsg;
 
 				var reTitle = /\[\[eTitle\]\]/gi;
 				var reMaxPage = /\[\[DOCMAXPAGENUM\]\]/gi;
 
 				for ( var e=0; e < eengine.erMsg.length; e++ ) {
 					var er = eengine.erMsg[e];
 					if ( reTitle.test(er) ) {
 						er = er.replace( reTitle, eengine.e_ttl);
 						eengine.erMsg[e] = er;
 					}
 
 					if ( reMaxPage.test(er) ) {
 						var max = eengine._mp;
 						if ( eengine.cover > 1 ) {
 							max++;
 						}
 						er = er.replace( reMaxPage, max);
 						eengine.erMsg[e] = er;
 					}
 				}
 				g_errMsg = eengine.erMsg;
 			}
 		}
 	} catch (e) {}