/****************************************************
*					locations.js					*
*****************************************************
*	Author			:	Avrinder.S.M.				*
*	Date Created	:	June 25, 2005				*
*	Date Modified	:								*
*	Description: Part I is called on the top-level	*
*	links. This passes the relevant location to 	*
*	the link. Part II masks the status text in the	*
*	browsers status bar.							*
****************************************************/

// Part I

function location1()
	{
		location="http://travel.ian.com/cars/index.jsp?cid=95677";
		}
	
	function location2()
	{
		location="/globester/pages/usermgmt/hotels.jsp";
		window.status = "Hotels"
	}
	
	function location3()
	{
		location="/globester/pages/usermgmt/vacations.jsp";
		window.status = "Vacations"
	}
	
	function location4()
	{
		location="/globester/pages/usermgmt/cruises.jsp";
		window.status = "Cruises"
	}
	
	function location5()
	{
		location="http://dg.ian.com/index.jsp?cid=95677";
		window.status = "Travel Guide"
	}
	
// Part II	
	
function status1()
	{
		window.status="Car Rentals";
		}
		
function status2()
	{
		window.status="Hotels";
		}
		
function status3()
	{
		window.status="Vacations";
		}
		
function status4()
	{
		window.status="Cruises";
		}	
		
function status5()
	{
		window.status="Travel Guide";
		}
		
function status6()
	{
		window.status="Home";
		}	
		
function status7()
	{
		window.status="Flights";
		}
			
