/*----------------------------------------------------------------------------------

 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

 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";
    	RSV_PAGE_TITLE          = "Charter Bus Lines - Reservation";

function GetYvrTextMenu(){
	var text_menu;
	text_menu = "";
	text_menu = text_menu + " <center>";
	text_menu = text_menu + " <br>";
	text_menu = text_menu + " <br>";
	text_menu = text_menu + " <hr>";
	text_menu = text_menu + " <FONT SIZE=2 FACE=Verdana>";
	text_menu = text_menu + " <b>";
	text_menu = text_menu + " <i>";
	text_menu = text_menu + "    <a target=frameMain href=HomeSplashScreen.html>Home</a> |";
	text_menu = text_menu + "    <a target=frameMain href=Schedule.html>Schedule</a> |";
	text_menu = text_menu + "    <a target=frameMain href=MapDowntown.html>Downtown Map</a> |";
	text_menu = text_menu + "    <a target=frameMain href=MapAirport.html>Airport Map</a> |";
	text_menu = text_menu + "    <a target=frameMain href=Fares.html>Fares</a> |";
	text_menu = text_menu + "    <a target=frameMain href=Contact.html>Contacts</a> |";
	text_menu = text_menu + "    <a target=frameMain href=Links.html>Links</a>";
	text_menu = text_menu + " </i>";
	text_menu = text_menu + " </b>";
	text_menu = text_menu + " </center>";
	return text_menu;
}


