/*----------------------------------------------------------------------------------

 File            : XGlobal.js

 Use             : Global Constants and variables

 Description     : This source file contains global variables and constants that are
 				   not specific to a web site or page.

 Dependants      : CBL XLibrary.js
 				   CBL CharterRequest.js
 				   CBL HomeSplashScreen.html

 Depends On      : none

 Modfications    : 2002/03/27 JPE Created

-------------------------------------------------------------------------------------*/


// global constants
	NOT_FOUND			= -1;		//the element in the array that you are looking for was not found
	CRLF				= "\r\n"    //carriage return line feed

	COLOR_CBL_GREEN		= "#009933";
	COLOR_QCL_ORANGE	= "#ff9900";
	COLOR_GRASS			= "#ccffcc";    
	COLOR_GREY			= "#888888";
	COLOR_LITE_GREY		= "#CCCCCC";
	COLOR_DARK_GREY		= "#444444";
	COLOR_WHITE         = "#ffffff";
    RSV_PAGE_TITLE      = "quote";




