/*----------------------------------------------------------------------------------

 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      = "Charter Bus Lines - Reservation";



function GetCblTextMenu(){
	var text_menu;	
	text_menu = "";
	text_menu = text_menu + "<center>";
	text_menu = text_menu + "    <table width=600px bgcolor=" + COLOR_WHITE + ">";
	text_menu = text_menu + "        <tr>";
	text_menu = text_menu + "            <td>"; 
	text_menu = text_menu + "                 <FONT SIZE=1 FACE=Arial COLOR=" + COLOR_CBL_GREEN + ">";
	text_menu = text_menu + "                   </i>";
	text_menu = text_menu + "					  <center>";
	text_menu = text_menu + "                 		<a target=frameMain href=HomeSplashScreen.html>Home</a> |"; 
	text_menu = text_menu + "                 		<a target=frameMain href=Equipment.html>Our Equipment</a> |"; 
	text_menu = text_menu + "                 		<a target=frameMain href=Services.html>Our Services</a> |"; 
//	text_menu = text_menu + "                 		<a target=frameMain href=CharterRequest.html>Reservations</a> |"; 
	text_menu = text_menu + "                 		<a target=frameMain href=Links.html>Links</a> |"; 
	text_menu = text_menu + "                 		<a target=frameMain href=HomeContact.html>Contact CBL</a>"; 
	text_menu = text_menu + "                 	  </i>";
	text_menu = text_menu + "					</center>";
	text_menu = text_menu + "                 </FONT>"; 
	text_menu = text_menu + "            </td>"; 
	text_menu = text_menu + "        </tr>";
	text_menu = text_menu + "    </table>";
	text_menu = text_menu + "    <br>";
	text_menu = text_menu + "    <br>";
	text_menu = text_menu + "    <br>";
	text_menu = text_menu + "</center>";
	return text_menu;
}	 
      

 
